1 | % Complete documentation on the extended LaTeX markup used for Python |
---|
2 | % documentation is available in ''Documenting Python'', which is part |
---|
3 | % of the standard documentation for Python. It may be found online |
---|
4 | % at: |
---|
5 | % |
---|
6 | % http://www.python.org/doc/current/doc/doc.html |
---|
7 | |
---|
8 | %labels |
---|
9 | %Sections and subsections \label{sec: } |
---|
10 | %Chapters \label{ch: } |
---|
11 | %Equations \label{eq: } |
---|
12 | %Figures \label{fig: } |
---|
13 | |
---|
14 | % Is latex failing with; |
---|
15 | % 'modanuga_user_manual.ind' not found? |
---|
16 | % try this command-line |
---|
17 | % makeindex modanuga_user_manual.idx |
---|
18 | % To produce the modanuga_user_manual.ind file. |
---|
19 | |
---|
20 | %%%%%%%%%%%%%% TODO %%%%%%%%%%%%%%%% |
---|
21 | % |
---|
22 | % ensure_geospatial |
---|
23 | % ensure_absolute |
---|
24 | % set_geo_reference |
---|
25 | |
---|
26 | \documentclass{manual} |
---|
27 | |
---|
28 | \usepackage{graphicx} |
---|
29 | \usepackage[english]{babel} |
---|
30 | \usepackage{datetime} |
---|
31 | \usepackage[hang,small,bf]{caption} |
---|
32 | |
---|
33 | \input{definitions} |
---|
34 | |
---|
35 | %%%%% |
---|
36 | % Set penalties for widows, etc, very high |
---|
37 | %%%%% |
---|
38 | |
---|
39 | \widowpenalty=10000 |
---|
40 | \clubpenalty=10000 |
---|
41 | \raggedbottom |
---|
42 | |
---|
43 | \title{\anuga User Manual} |
---|
44 | \author{Geoscience Australia and the Australian National University} |
---|
45 | |
---|
46 | % Please at least include a long-lived email address; |
---|
47 | % the rest is at your discretion. |
---|
48 | \authoraddress{Geoscience Australia \\ |
---|
49 | Email: \email{ole.nielsen@ga.gov.au} |
---|
50 | } |
---|
51 | |
---|
52 | %Draft date |
---|
53 | |
---|
54 | % update before release! |
---|
55 | % Use an explicit date so that reformatting |
---|
56 | % doesn't cause a new date to be used. Setting |
---|
57 | % the date to \today can be used during draft |
---|
58 | % stages to make it easier to handle versions. |
---|
59 | |
---|
60 | \longdate % Make date format long using datetime.sty |
---|
61 | %\settimeformat{xxivtime} % 24 hour Format |
---|
62 | \settimeformat{oclock} % Verbose |
---|
63 | \date{\today, \ \currenttime} |
---|
64 | %\hyphenation{set\_datadir} |
---|
65 | |
---|
66 | \ifhtml |
---|
67 | \date{\today} % latex2html does not know about datetime |
---|
68 | \fi |
---|
69 | |
---|
70 | \input{version} % Get version info - this file may be modified by |
---|
71 | % update_anuga_user_manual.py - if not a dummy |
---|
72 | % will be used. |
---|
73 | |
---|
74 | %\release{1.0} % release version; this is used to define the |
---|
75 | % % \version macro |
---|
76 | |
---|
77 | \makeindex % tell \index to actually write the .idx file |
---|
78 | \makemodindex % If this contains a lot of module sections. |
---|
79 | |
---|
80 | \setcounter{tocdepth}{3} |
---|
81 | \setcounter{secnumdepth}{3} |
---|
82 | |
---|
83 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
84 | |
---|
85 | \begin{document} |
---|
86 | \maketitle |
---|
87 | |
---|
88 | % This makes the contents more accessible from the front page of the HTML. |
---|
89 | \ifhtml |
---|
90 | \chapter*{Front Matter\label{front}} |
---|
91 | \fi |
---|
92 | |
---|
93 | %Subversion keywords: |
---|
94 | % |
---|
95 | %$LastChangedDate: 2009-10-29 05:18:30 +0000 (Thu, 29 Oct 2009) $ |
---|
96 | %$LastChangedRevision: 7552 $ |
---|
97 | %$LastChangedBy: ole $ |
---|
98 | |
---|
99 | \input{copyright} |
---|
100 | |
---|
101 | \begin{abstract} |
---|
102 | \label{def:anuga} |
---|
103 | |
---|
104 | \noindent \anuga\index{\anuga} is a hydrodynamic modelling tool that |
---|
105 | allows users to model realistic flow problems in complex 2D geometries. |
---|
106 | Examples include dam breaks or the effects of natural hazards such |
---|
107 | as riverine flooding, storm surges and tsunami. |
---|
108 | |
---|
109 | The user must specify a study area represented by a mesh of triangular |
---|
110 | cells, the topography and bathymetry, frictional resistance, initial |
---|
111 | values for water level (called \emph{stage}\index{stage} within \anuga), |
---|
112 | boundary conditions and forces such as rainfall, stream flows, windstress or pressure gradients if applicable. |
---|
113 | |
---|
114 | \anuga tracks the evolution of water depth and horizontal momentum |
---|
115 | within each cell over time by solving the shallow water wave equation |
---|
116 | governing equation using a finite-volume method. |
---|
117 | |
---|
118 | \anuga also incorporates a mesh generator that |
---|
119 | allows the user to set up the geometry of the problem interactively as |
---|
120 | well as tools for interpolation and surface fitting, and a number of |
---|
121 | auxiliary tools for visualising and interrogating the model output. |
---|
122 | |
---|
123 | Most \anuga components are written in the object-oriented programming |
---|
124 | language Python and most users will interact with \anuga by writing |
---|
125 | small Python programs based on the \anuga library |
---|
126 | functions. Computationally intensive components are written for |
---|
127 | efficiency in C routines working directly with Python numpy structures. |
---|
128 | |
---|
129 | \end{abstract} |
---|
130 | |
---|
131 | \tableofcontents |
---|
132 | |
---|
133 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
134 | |
---|
135 | \chapter{Introduction} |
---|
136 | |
---|
137 | |
---|
138 | \section{Purpose} |
---|
139 | |
---|
140 | The purpose of this user manual is to introduce the new user to the |
---|
141 | inundation software system, describe what it can do and give step-by-step |
---|
142 | instructions for setting up and running hydrodynamic simulations. |
---|
143 | The stable release of \anuga and this manual are available on sourceforge ati |
---|
144 | \url{http://sourceforge.net/projects/anuga}. A snapshot of work in progress is |
---|
145 | available through the \anuga software repository at |
---|
146 | \url{https://datamining.anu.edu.au/svn/ga/anuga_core} |
---|
147 | where the more adventurous reader might like to go. |
---|
148 | |
---|
149 | This manual describes \anuga version 1.0. To check for later versions of this manual |
---|
150 | go to \url{https://datamining.anu.edu.au/anuga}. |
---|
151 | |
---|
152 | \section{Scope} |
---|
153 | |
---|
154 | This manual covers only what is needed to operate the software after |
---|
155 | installation and configuration. It does not includes instructions |
---|
156 | for installing the software or detailed API documentation, both of |
---|
157 | which will be covered in separate publications and by documentation |
---|
158 | in the source code. |
---|
159 | |
---|
160 | The latest installation instructions may be found at: |
---|
161 | \url{http://datamining.anu.edu.au/\~{}ole/anuga/user_manual/anuga_installation_guide.pdf}. |
---|
162 | |
---|
163 | \section{Audience} |
---|
164 | |
---|
165 | Readers are assumed to be familiar with the Python Programming language and |
---|
166 | its object oriented approach. |
---|
167 | Python tutorials include |
---|
168 | \url{http://docs.python.org/tut}, |
---|
169 | \url{http://www.sthurlow.com/python}, and |
---|
170 | %\url{http://datamining.anu.edu.au/\%7e ole/work/teaching/ctac2006/exercise1.pdf}. |
---|
171 | \url{http://datamining.anu.edu.au/\~{}ole/work/teaching/ctac2006/exercise1.pdf}. |
---|
172 | |
---|
173 | Readers also need to have a general understanding of scientific modelling, |
---|
174 | as well as enough programming experience to adapt the code to different |
---|
175 | requirements. |
---|
176 | |
---|
177 | \pagebreak |
---|
178 | |
---|
179 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
180 | |
---|
181 | \chapter{Background} |
---|
182 | |
---|
183 | Modelling the effects on the built environment of natural hazards such |
---|
184 | as riverine flooding, storm surges and tsunami is critical for |
---|
185 | understanding their economic and social impact on our urban |
---|
186 | communities. Geoscience Australia and the Australian National |
---|
187 | University are developing a hydrodynamic inundation modelling tool |
---|
188 | called \anuga to help simulate the impact of these hazards. |
---|
189 | |
---|
190 | The core of \anuga is the fluid dynamics module, called \code{shallow\_water}, |
---|
191 | which is based on a finite-volume method for solving the Shallow Water |
---|
192 | Wave Equation. The study area is represented by a mesh of triangular |
---|
193 | cells. By solving the governing equation within each cell, water |
---|
194 | depth and horizontal momentum are tracked over time. |
---|
195 | |
---|
196 | A major capability of \anuga is that it can model the process of |
---|
197 | wetting and drying as water enters and leaves an area. This means |
---|
198 | that it is suitable for simulating water flow onto a beach or dry land |
---|
199 | and around structures such as buildings. \anuga is also capable |
---|
200 | of modelling hydraulic jumps due to the ability of the finite-volume |
---|
201 | method to accommodate discontinuities in the solution\footnote{ |
---|
202 | While \anuga works with discontinuities in the conserved quantities stage, |
---|
203 | xmomentum and ymomentum, it does not allow discontinuities in the bed elevation.}. |
---|
204 | |
---|
205 | To set up a particular scenario the user specifies the geometry |
---|
206 | (bathymetry and topography), the initial water level (stage), |
---|
207 | boundary conditions such as tide, and any forcing terms that may |
---|
208 | drive the system such as rainfall, abstraction of water, wind stress or atmospheric pressure |
---|
209 | gradients. Gravity and frictional resistance from the different |
---|
210 | terrains in the model are represented by predefined forcing terms. |
---|
211 | See section \ref{sec:forcing terms} for details on forcing terms available in \anuga. |
---|
212 | |
---|
213 | The built-in mesh generator, called \code{graphical\_mesh\_generator}, |
---|
214 | allows the user to set up the geometry |
---|
215 | of the problem interactively and to identify boundary segments and |
---|
216 | regions using symbolic tags. These tags may then be used to set the |
---|
217 | actual boundary conditions and attributes for different regions |
---|
218 | (e.g.\ the Manning friction coefficient) for each simulation. |
---|
219 | |
---|
220 | Most \anuga components are written in the object-oriented programming |
---|
221 | language Python. Software written in Python can be produced quickly |
---|
222 | and can be readily adapted to changing requirements throughout its |
---|
223 | lifetime. Computationally intensive components are written for |
---|
224 | efficiency in C routines working directly with Python numeric |
---|
225 | structures. The animation tool developed for \anuga is based on |
---|
226 | OpenSceneGraph, an Open Source Software (OSS) component allowing high |
---|
227 | level interaction with sophisticated graphics primitives. |
---|
228 | See \cite{nielsen2005} for more background on \anuga. |
---|
229 | |
---|
230 | \chapter{Restrictions and limitations on \anuga} |
---|
231 | \label{ch:limitations} |
---|
232 | |
---|
233 | Although a powerful and flexible tool for hydrodynamic modelling, \anuga has a |
---|
234 | number of limitations that any potential user needs to be aware of. They are: |
---|
235 | |
---|
236 | \begin{itemize} |
---|
237 | \item The mathematical model is the 2D shallow water wave equation. |
---|
238 | As such it cannot resolve vertical convection and consequently not breaking |
---|
239 | waves or 3D turbulence (e.g.\ vorticity). |
---|
240 | %\item The surface is assumed to be open, e.g.\ \anuga cannot model |
---|
241 | %flow under ceilings or in pipes |
---|
242 | \item All spatial coordinates are assumed to be UTM (meters). As such, |
---|
243 | \anuga is unsuitable for modelling flows in areas larger than one UTM zone |
---|
244 | (6 degrees wide). |
---|
245 | \item Fluid is assumed to be inviscid -- i.e.\ no kinematic viscosity included. |
---|
246 | \item The finite volume is a very robust and flexible numerical technique, |
---|
247 | but it is not the fastest method around. If the geometry is sufficiently |
---|
248 | simple and if there is no need for wetting or drying, a finite-difference |
---|
249 | method may be able to solve the problem faster than \anuga. |
---|
250 | %\item Mesh resolutions near coastlines with steep gradients need to be... |
---|
251 | \item Frictional resistance is implemented using Manning's formula, but |
---|
252 | \anuga has not yet been fully validated in regard to bottom roughness. |
---|
253 | %\item \anuga contains no tsunami-genic functionality relating to earthquakes. |
---|
254 | \end{itemize} |
---|
255 | |
---|
256 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
257 | |
---|
258 | \chapter{Getting Started} |
---|
259 | \label{ch:getstarted} |
---|
260 | |
---|
261 | This section is designed to assist the reader to get started with |
---|
262 | \anuga by working through some examples. Two examples are discussed; |
---|
263 | the first is a simple example to illustrate many of the concepts, and |
---|
264 | the second is a more realistic example. |
---|
265 | |
---|
266 | |
---|
267 | \section{A Simple Example} |
---|
268 | \label{sec:simpleexample} |
---|
269 | |
---|
270 | \subsection{Overview} |
---|
271 | |
---|
272 | What follows is a discussion of the structure and operation of a |
---|
273 | script called \file{runup.py}. |
---|
274 | |
---|
275 | This example carries out the solution of the shallow-water wave |
---|
276 | equation in the simple case of a configuration comprising a flat |
---|
277 | bed, sloping at a fixed angle in one direction and having a |
---|
278 | constant depth across each line in the perpendicular direction. |
---|
279 | |
---|
280 | The example demonstrates the basic ideas involved in setting up a |
---|
281 | complex scenario. In general the user specifies the geometry |
---|
282 | (bathymetry and topography), the initial water level, boundary |
---|
283 | conditions such as tide, and any forcing terms that may drive the |
---|
284 | system such as rainfall, abstraction of water, wind stress or atmospheric pressure gradients. |
---|
285 | Frictional resistance from the different terrains in the model is |
---|
286 | represented by predefined forcing terms. In this example, the |
---|
287 | boundary is reflective on three sides and a time dependent wave on |
---|
288 | one side. |
---|
289 | |
---|
290 | The present example represents a simple scenario and does not |
---|
291 | include any forcing terms, nor is the data taken from a file as it |
---|
292 | would typically be. |
---|
293 | |
---|
294 | The conserved quantities involved in the |
---|
295 | problem are stage (absolute height of water surface), |
---|
296 | $x$-momentum and $y$-momentum. Other quantities |
---|
297 | involved in the computation are the friction and elevation. |
---|
298 | |
---|
299 | Water depth can be obtained through the equation: |
---|
300 | |
---|
301 | \begin{verbatim} |
---|
302 | depth = stage - elevation |
---|
303 | \end{verbatim} |
---|
304 | |
---|
305 | \subsection{Outline of the Program} |
---|
306 | |
---|
307 | In outline, \file{runup.py} performs the following steps: |
---|
308 | \begin{enumerate} |
---|
309 | \item Sets up a triangular mesh. |
---|
310 | \item Sets certain parameters governing the mode of |
---|
311 | operation of the model, specifying, for instance, |
---|
312 | where to store the model output. |
---|
313 | \item Inputs various quantities describing physical measurements, such |
---|
314 | as the elevation, to be specified at each mesh point (vertex). |
---|
315 | \item Sets up the boundary conditions. |
---|
316 | \item Carries out the evolution of the model through a series of time |
---|
317 | steps and outputs the results, providing a results file that can |
---|
318 | be viewed. |
---|
319 | \end{enumerate} |
---|
320 | |
---|
321 | \subsection{The Code} |
---|
322 | |
---|
323 | For reference we include below the complete code listing for |
---|
324 | \file{runup.py}. Subsequent paragraphs provide a |
---|
325 | 'commentary' that describes each step of the program and explains it |
---|
326 | significance. |
---|
327 | |
---|
328 | \label{ref:runup_py_code} |
---|
329 | \verbatiminput{demos/runup.py} |
---|
330 | |
---|
331 | \subsection{Establishing the Mesh}\index{mesh, establishing} |
---|
332 | |
---|
333 | The first task is to set up the triangular mesh to be used for the |
---|
334 | scenario. This is carried out through the statement: |
---|
335 | |
---|
336 | \begin{verbatim} |
---|
337 | points, vertices, boundary = rectangular_cross(10, 10) |
---|
338 | \end{verbatim} |
---|
339 | |
---|
340 | The function \function{rectangular_cross} is imported from a module |
---|
341 | \module{mesh\_factory} defined elsewhere. (\anuga also contains |
---|
342 | several other schemes that can be used for setting up meshes, but we |
---|
343 | shall not discuss these.) The above assignment sets up a $10 \times |
---|
344 | 10$ rectangular mesh, triangulated in a regular way. The assignment: |
---|
345 | |
---|
346 | \begin{verbatim} |
---|
347 | points, vertices, boundary = rectangular_cross(m, n) |
---|
348 | \end{verbatim} |
---|
349 | |
---|
350 | returns: |
---|
351 | |
---|
352 | \begin{itemize} |
---|
353 | \item a list \code{points} giving the coordinates of each mesh point, |
---|
354 | \item a list \code{vertices} specifying the three vertices of each triangle, and |
---|
355 | \item a dictionary \code{boundary} that stores the edges on |
---|
356 | the boundary and associates each with one of the symbolic tags \code{'left'}, \code{'right'}, |
---|
357 | \code{'top'} or \code{'bottom'}. The edges are represented as pairs (i, j) where i refers to the triangle id and j to the edge id of that triangle. |
---|
358 | Edge ids are enumerated from 0 to 2 based on the id of the vertex opposite. |
---|
359 | \end{itemize} |
---|
360 | |
---|
361 | (For more details on symbolic tags, see page |
---|
362 | \pageref{ref:tagdescription}.) |
---|
363 | |
---|
364 | An example of a general unstructured mesh and the associated data |
---|
365 | structures \code{points}, \code{vertices} and \code{boundary} is |
---|
366 | given in Section \ref{sec:meshexample}. |
---|
367 | |
---|
368 | \subsection{Initialising the Domain} |
---|
369 | |
---|
370 | These variables are then used to set up a data structure |
---|
371 | \code{domain}, through the assignment: |
---|
372 | |
---|
373 | \begin{verbatim} |
---|
374 | domain = Domain(points, vertices, boundary) |
---|
375 | \end{verbatim} |
---|
376 | |
---|
377 | This creates an instance of the \class{Domain} class, which |
---|
378 | represents the domain of the simulation. Specific options are set at |
---|
379 | this point, including the basename for the output file and the |
---|
380 | directory to be used for data: |
---|
381 | |
---|
382 | \begin{verbatim} |
---|
383 | domain.set_name('runup') |
---|
384 | domain.set_datadir('.') |
---|
385 | \end{verbatim} |
---|
386 | |
---|
387 | In addition, the following statement could be used to state that |
---|
388 | quantities \code{stage}, \code{xmomentum} and \code{ymomentum} are |
---|
389 | to be stored at every timestep and \code{elevation} only once at |
---|
390 | the beginning of the simulation: |
---|
391 | |
---|
392 | \begin{verbatim} |
---|
393 | domain.set_quantities_to_be_stored({'stage': 2, 'xmomentum': 2, 'ymomentum': 2, 'elevation': 1}) |
---|
394 | \end{verbatim} |
---|
395 | |
---|
396 | However, this is not necessary, as the above is the default behaviour. |
---|
397 | |
---|
398 | \subsection{Initial Conditions} |
---|
399 | |
---|
400 | The next task is to specify a number of quantities that we wish to |
---|
401 | set for each mesh point. The class \class{Domain} has a method |
---|
402 | \method{set\_quantity}, used to specify these quantities. It is a |
---|
403 | flexible method that allows the user to set quantities in a variety |
---|
404 | of ways -- using constants, functions, numeric arrays, expressions |
---|
405 | involving other quantities, or arbitrary data points with associated |
---|
406 | values, all of which can be passed as arguments. All quantities can |
---|
407 | be initialised using \method{set\_quantity}. For a conserved |
---|
408 | quantity (such as \code{stage, xmomentum, ymomentum}) this is called |
---|
409 | an \emph{initial condition}. However, other quantities that aren't |
---|
410 | updated by the equation are also assigned values using the same |
---|
411 | interface. The code in the present example demonstrates a number of |
---|
412 | forms in which we can invoke \method{set\_quantity}. |
---|
413 | |
---|
414 | \subsubsection{Elevation} |
---|
415 | |
---|
416 | The elevation, or height of the bed, is set using a function |
---|
417 | defined through the statements below, which is specific to this |
---|
418 | example and specifies a particularly simple initial configuration |
---|
419 | for demonstration purposes: |
---|
420 | |
---|
421 | \begin{verbatim} |
---|
422 | def topography(x, y): |
---|
423 | return -x/2 |
---|
424 | \end{verbatim} |
---|
425 | |
---|
426 | This simply associates an elevation with each point \code{(x, y)} of |
---|
427 | the plane. It specifies that the bed slopes linearly in the |
---|
428 | \code{x} direction, with slope $-\frac{1}{2}$, and is constant in |
---|
429 | the \code{y} direction. |
---|
430 | |
---|
431 | Once the function \function{topography} is specified, the quantity |
---|
432 | \code{elevation} is assigned through the simple statement: |
---|
433 | |
---|
434 | \begin{verbatim} |
---|
435 | domain.set_quantity('elevation', topography) |
---|
436 | \end{verbatim} |
---|
437 | |
---|
438 | NOTE: If using function to set \code{elevation} it must be vector |
---|
439 | compatible. For example, using square root will not work. |
---|
440 | |
---|
441 | \subsubsection{Friction} |
---|
442 | |
---|
443 | The assignment of the friction quantity (a forcing term) |
---|
444 | demonstrates another way we can use \method{set\_quantity} to set |
---|
445 | quantities -- namely, assign them to a constant numerical value: |
---|
446 | |
---|
447 | \begin{verbatim} |
---|
448 | domain.set_quantity('friction', 0.1) |
---|
449 | \end{verbatim} |
---|
450 | |
---|
451 | This specifies that the Manning friction coefficient is set to 0.1 |
---|
452 | at every mesh point. |
---|
453 | |
---|
454 | \subsubsection{Stage} |
---|
455 | |
---|
456 | The stage (the height of the water surface) is related to the |
---|
457 | elevation and the depth at any time by the equation: |
---|
458 | |
---|
459 | \begin{verbatim} |
---|
460 | stage = elevation + depth |
---|
461 | \end{verbatim} |
---|
462 | |
---|
463 | For this example, we simply assign a constant value to \code{stage}, |
---|
464 | using the statement: |
---|
465 | |
---|
466 | \begin{verbatim} |
---|
467 | domain.set_quantity('stage', -0.4) |
---|
468 | \end{verbatim} |
---|
469 | |
---|
470 | which specifies that the surface level is set to a height of $-0.4$, |
---|
471 | i.e.\ 0.4 units (metres) below the zero level. |
---|
472 | |
---|
473 | Although it is not necessary for this example, it may be useful to |
---|
474 | digress here and mention a variant to this requirement, which allows |
---|
475 | us to illustrate another way to use \method{set\_quantity} -- namely, |
---|
476 | incorporating an expression involving other quantities. Suppose, |
---|
477 | instead of setting a constant value for the stage, we wished to |
---|
478 | specify a constant value for the \emph{depth}. For such a case we |
---|
479 | need to specify that \code{stage} is everywhere obtained by adding |
---|
480 | that value to the value already specified for \code{elevation}. We |
---|
481 | would do this by means of the statements: |
---|
482 | |
---|
483 | \begin{verbatim} |
---|
484 | h = 0.05 # Constant depth |
---|
485 | domain.set_quantity('stage', expression='elevation + %f' % h) |
---|
486 | \end{verbatim} |
---|
487 | |
---|
488 | That is, the value of \code{stage} is set to $\code{h} = 0.05$ plus |
---|
489 | the value of \code{elevation} already defined. |
---|
490 | |
---|
491 | The reader will probably appreciate that this capability to |
---|
492 | incorporate expressions into statements using \method{set\_quantity} |
---|
493 | greatly expands its power. See Section \ref{sec:initial conditions} for more |
---|
494 | details. |
---|
495 | |
---|
496 | \subsection{Boundary Conditions}\index{boundary conditions} |
---|
497 | |
---|
498 | The boundary conditions are specified as follows: |
---|
499 | |
---|
500 | \begin{verbatim} |
---|
501 | Br = Reflective_boundary(domain) |
---|
502 | Bt = Transmissive_boundary(domain) |
---|
503 | Bd = Dirichlet_boundary([0.2, 0.0, 0.0]) |
---|
504 | Bw = Time_boundary(domain=domain, |
---|
505 | f=lambda t: [(0.1*sin(t*2*pi)-0.3)*exp(-t), 0.0, 0.0]) |
---|
506 | \end{verbatim} |
---|
507 | |
---|
508 | The effect of these statements is to set up a selection of different |
---|
509 | alternative boundary conditions and store them in variables that can be |
---|
510 | assigned as needed. Each boundary condition specifies the |
---|
511 | behaviour at a boundary in terms of the behaviour in neighbouring |
---|
512 | elements. The boundary conditions introduced here may be briefly described as |
---|
513 | follows: |
---|
514 | \begin{itemize} |
---|
515 | \item \textbf{Reflective boundary}\label{def:reflective boundary} |
---|
516 | Returns same \code{stage} as in its neighbour volume but momentum |
---|
517 | vector reversed 180 degrees (reflected). |
---|
518 | Specific to the shallow water equation as it works with the |
---|
519 | momentum quantities assumed to be the second and third conserved |
---|
520 | quantities. A reflective boundary condition models a solid wall. |
---|
521 | \item \textbf{Transmissive boundary}\label{def:transmissive boundary} |
---|
522 | Returns same conserved quantities as |
---|
523 | those present in its neighbour volume. This is one way of modelling |
---|
524 | outflow from a domain, but it should be used with caution if flow is |
---|
525 | not steady state as replication of momentum at the boundary |
---|
526 | may cause numerical instabilities propagating into the domain and |
---|
527 | eventually causing \anuga to crash. If this occurs, |
---|
528 | consider using e.g.\ a Dirichlet boundary condition with a stage value |
---|
529 | less than the elevation at the boundary. |
---|
530 | \item \textbf{Dirichlet boundary}\label{def:dirichlet boundary} Specifies |
---|
531 | constant values for stage, $x$-momentum and $y$-momentum at the boundary. |
---|
532 | \item \textbf{Time boundary}\label{def:time boundary} Like a Dirichlet |
---|
533 | boundary but with behaviour varying with time. |
---|
534 | \end{itemize} |
---|
535 | |
---|
536 | \label{ref:tagdescription}Before describing how these boundary |
---|
537 | conditions are assigned, we recall that a mesh is specified using |
---|
538 | three variables \code{points}, \code{vertices} and \code{boundary}. |
---|
539 | In the code we are discussing, these three variables are returned by |
---|
540 | the function \code{rectangular}. The example given in |
---|
541 | Section \ref{sec:realdataexample} illustrates another way of |
---|
542 | assigning the values, by means of the function |
---|
543 | \code{create_mesh_from_regions}. |
---|
544 | |
---|
545 | These variables store the data determining the mesh as follows. (You |
---|
546 | may find that the example given in Section \ref{sec:meshexample} |
---|
547 | helps to clarify the following discussion, even though that example |
---|
548 | is a \emph{non-rectangular} mesh.) |
---|
549 | \begin{itemize} |
---|
550 | \item The variable \code{points} stores a list of 2-tuples giving the |
---|
551 | coordinates of the mesh points. |
---|
552 | \item The variable \code{vertices} stores a list of 3-tuples of |
---|
553 | numbers, representing vertices of triangles in the mesh. In this |
---|
554 | list, the triangle whose vertices are \code{points[i]}, |
---|
555 | \code{points[j]}, \code{points[k]} is represented by the 3-tuple |
---|
556 | \code{(i, j, k)}. |
---|
557 | \item The variable \code{boundary} is a Python dictionary that |
---|
558 | not only stores the edges that make up the boundary but also assigns |
---|
559 | symbolic tags to these edges to distinguish different parts of the |
---|
560 | boundary. An edge with endpoints \code{points[i]} and |
---|
561 | \code{points[j]} is represented by the 2-tuple \code{(i, j)}. The |
---|
562 | keys for the dictionary are the 2-tuples \code{(i, j)} corresponding |
---|
563 | to boundary edges in the mesh, and the values are the tags are used |
---|
564 | to label them. In the present example, the value \code{boundary[(i, j)]} |
---|
565 | assigned to \code{(i, j)]} is one of the four tags |
---|
566 | \code{'left'}, \code{'right'}, \code{'top'} or \code{'bottom'}, |
---|
567 | depending on whether the boundary edge represented by \code{(i, j)} |
---|
568 | occurs at the left, right, top or bottom of the rectangle bounding |
---|
569 | the mesh. The function \code{rectangular} automatically assigns |
---|
570 | these tags to the boundary edges when it generates the mesh. |
---|
571 | \end{itemize} |
---|
572 | |
---|
573 | The tags provide the means to assign different boundary conditions |
---|
574 | to an edge depending on which part of the boundary it belongs to. |
---|
575 | (In Section \ref{sec:realdataexample} we describe an example that |
---|
576 | uses different boundary tags -- in general, the possible tags are entirely selectable by the user when generating the mesh and not |
---|
577 | limited to 'left', 'right', 'top' and 'bottom' as in this example.) |
---|
578 | All segments in bounding polygon must be tagged. If a tag is not supplied, the default tag name 'exterior' will be assigned by \anuga. |
---|
579 | |
---|
580 | Using the boundary objects described above, we assign a boundary |
---|
581 | condition to each part of the boundary by means of a statement like: |
---|
582 | |
---|
583 | \begin{verbatim} |
---|
584 | domain.set_boundary({'left': Br, 'right': Bw, 'top': Br, 'bottom': Br}) |
---|
585 | \end{verbatim} |
---|
586 | |
---|
587 | It is critical that all tags are associated with a boundary condition in this statement. |
---|
588 | If not the program will halt with a statement like: |
---|
589 | |
---|
590 | \begin{verbatim} |
---|
591 | Traceback (most recent call last): |
---|
592 | File "mesh_test.py", line 114, in ? |
---|
593 | domain.set_boundary({'west': Bi, 'east': Bo, 'north': Br, 'south': Br}) |
---|
594 | File "X:\inundation\sandpits\onielsen\anuga_core\source\anuga\abstract_2d_finite_volumes\domain.py", line 505, in set_boundary |
---|
595 | raise msg |
---|
596 | ERROR (domain.py): Tag "exterior" has not been bound to a boundary object. |
---|
597 | All boundary tags defined in domain must appear in the supplied dictionary. |
---|
598 | The tags are: ['ocean', 'east', 'north', 'exterior', 'south'] |
---|
599 | \end{verbatim} |
---|
600 | |
---|
601 | The command \code{set_boundary} stipulates that, in the current example, the right |
---|
602 | boundary varies with time, as defined by the lambda function, while the other |
---|
603 | boundaries are all reflective. |
---|
604 | |
---|
605 | The reader may wish to experiment by varying the choice of boundary |
---|
606 | types for one or more of the boundaries. (In the case of \code{Bd} |
---|
607 | and \code{Bw}, the three arguments in each case represent the |
---|
608 | \code{stage}, $x$-momentum and $y$-momentum, respectively.) |
---|
609 | |
---|
610 | \begin{verbatim} |
---|
611 | Bw = Time_boundary(domain=domain, f=lambda t: [(0.1*sin(t*2*pi)-0.3), 0.0, 0.0]) |
---|
612 | \end{verbatim} |
---|
613 | |
---|
614 | \subsection{Evolution}\index{evolution} |
---|
615 | |
---|
616 | The final statement: |
---|
617 | |
---|
618 | \begin{verbatim} |
---|
619 | for t in domain.evolve(yieldstep=0.1, duration=10.0): |
---|
620 | print domain.timestepping_statistics() |
---|
621 | \end{verbatim} |
---|
622 | |
---|
623 | causes the configuration of the domain to 'evolve', over a series of |
---|
624 | steps indicated by the values of \code{yieldstep} and |
---|
625 | \code{duration}, which can be altered as required. The value of |
---|
626 | \code{yieldstep} controls the time interval between successive model |
---|
627 | outputs. Behind the scenes more time steps are generally taken. |
---|
628 | |
---|
629 | \subsection{Output} |
---|
630 | |
---|
631 | The output is a NetCDF file with the extension \code{.sww}. It |
---|
632 | contains stage and momentum information and can be used with the |
---|
633 | \anuga viewer \code{anuga\_viewer} to generate a visual |
---|
634 | display (see Section \ref{sec:animate}). See Section \ref{sec:file formats} |
---|
635 | (page \pageref{sec:file formats}) for more on NetCDF and other file |
---|
636 | formats. |
---|
637 | |
---|
638 | The following is a listing of the screen output seen by the user |
---|
639 | when this example is run: |
---|
640 | |
---|
641 | \verbatiminput{examples/runupoutput.txt} |
---|
642 | |
---|
643 | |
---|
644 | \section{How to Run the Code} |
---|
645 | |
---|
646 | The code can be run in various ways: |
---|
647 | \begin{itemize} |
---|
648 | \item{from a Windows or Unix command line} as in\ \code{python runup.py} |
---|
649 | \item{within the Python IDLE environment} |
---|
650 | \item{within emacs} |
---|
651 | \item{within Windows, by double-clicking the \code{runup.py} |
---|
652 | file.} |
---|
653 | \end{itemize} |
---|
654 | |
---|
655 | |
---|
656 | \section{Exploring the Model Output} |
---|
657 | |
---|
658 | The following figures are screenshots from the \anuga visualisation |
---|
659 | tool \code{animate}. Figure \ref{fig:runupstart} shows the domain |
---|
660 | with water surface as specified by the initial condition, $t=0$. |
---|
661 | Figure \ref{fig:runup2} shows later snapshots for $t=2.3$ and |
---|
662 | $t=4$ where the system has been evolved and the wave is encroaching |
---|
663 | on the previously dry bed. |
---|
664 | |
---|
665 | \code{animate} is described in more detail in Section \ref{sec:animate}. |
---|
666 | |
---|
667 | \begin{figure}[htp] |
---|
668 | \centerline{\includegraphics[width=75mm, height=75mm] |
---|
669 | {graphics/bedslopestart.jpg}} |
---|
670 | \caption{Runup example viewed with the \anuga viewer} |
---|
671 | \label{fig:runupstart} |
---|
672 | \end{figure} |
---|
673 | |
---|
674 | \begin{figure}[htp] |
---|
675 | \centerline{ |
---|
676 | \includegraphics[width=75mm, height=75mm]{graphics/bedslopeduring.jpg} |
---|
677 | \includegraphics[width=75mm, height=75mm]{graphics/bedslopeend.jpg} |
---|
678 | } |
---|
679 | \caption{Runup example viewed with ANGUA viewer} |
---|
680 | \label{fig:runup2} |
---|
681 | \end{figure} |
---|
682 | |
---|
683 | \clearpage |
---|
684 | |
---|
685 | |
---|
686 | \section{A slightly more complex example} |
---|
687 | \label{sec:channelexample} |
---|
688 | |
---|
689 | \subsection{Overview} |
---|
690 | |
---|
691 | The next example is about waterflow in a channel with varying boundary conditions and |
---|
692 | more complex topographies. These examples build on the |
---|
693 | concepts introduced through the \file{runup.py} in Section \ref{sec:simpleexample}. |
---|
694 | The example will be built up through three progressively more complex scripts. |
---|
695 | |
---|
696 | \subsection{Overview} |
---|
697 | |
---|
698 | As in the case of \file{runup.py}, the actions carried |
---|
699 | out by the program can be organised according to this outline: |
---|
700 | \begin{enumerate} |
---|
701 | \item Set up a triangular mesh. |
---|
702 | \item Set certain parameters governing the mode of |
---|
703 | operation of the model -- specifying, for instance, where to store the |
---|
704 | model output. |
---|
705 | \item Set up initial conditions for various quantities such as the elevation, to be specified at each mesh point (vertex). |
---|
706 | \item Set up the boundary conditions. |
---|
707 | \item Carry out the evolution of the model through a series of time |
---|
708 | steps and output the results, providing a results file that can be |
---|
709 | viewed. |
---|
710 | \end{enumerate} |
---|
711 | |
---|
712 | \subsection{The Code} |
---|
713 | |
---|
714 | Here is the code for the first version of the channel flow \file{channel1.py}: |
---|
715 | |
---|
716 | \verbatiminput{demos/channel1.py} |
---|
717 | |
---|
718 | In discussing the details of this example, we follow the outline |
---|
719 | given above, discussing each major step of the code in turn. |
---|
720 | |
---|
721 | \subsection{Establishing the Mesh}\index{mesh, establishing} |
---|
722 | |
---|
723 | In this example we use a similar simple structured triangular mesh as in \file{runup.py} |
---|
724 | for simplicity, but this time we will use a symmetric one and also |
---|
725 | change the physical extent of the domain. The assignment: |
---|
726 | |
---|
727 | \begin{verbatim} |
---|
728 | points, vertices, boundary = rectangular_cross(m, n, len1=length, len2=width) |
---|
729 | \end{verbatim} |
---|
730 | |
---|
731 | returns an \code{mxn} mesh similar to the one used in the previous example, except that now the |
---|
732 | extent in the x and y directions are given by the value of \code{length} and \code{width} |
---|
733 | respectively. |
---|
734 | |
---|
735 | Defining \code{m} and \code{n} in terms of the extent as in this example provides a convenient way of |
---|
736 | controlling the resolution: By defining \code{dx} and \code{dy} to be the desired size of each |
---|
737 | hypothenuse in the mesh we can write the mesh generation as follows: |
---|
738 | |
---|
739 | \begin{verbatim} |
---|
740 | length = 10.0 |
---|
741 | width = 5.0 |
---|
742 | dx = dy = 1 # Resolution: Length of subdivisions on both axes |
---|
743 | |
---|
744 | points, vertices, boundary = rectangular_cross(int(length/dx), int(width/dy), |
---|
745 | len1=length, len2=width) |
---|
746 | \end{verbatim} |
---|
747 | |
---|
748 | which yields a mesh of length=10m, width=5m with 1m spacings. To increase the resolution, |
---|
749 | as we will later in this example, one merely decreases the values of \code{dx} and \code{dy}. |
---|
750 | |
---|
751 | The rest of this script is similar to the previous example on page \pageref{ref:runup_py_code}. |
---|
752 | % except for an application of the 'expression' form of \code{set\_quantity} where we use |
---|
753 | % the value of \code{elevation} to define the (dry) initial condition for \code{stage}: |
---|
754 | %\begin{verbatim} |
---|
755 | % domain.set_quantity('stage', expression='elevation') |
---|
756 | %\end{verbatim} |
---|
757 | |
---|
758 | |
---|
759 | \section{Model Output} |
---|
760 | |
---|
761 | The following figure is a screenshot from the \anuga visualisation |
---|
762 | tool \code{animate} of output from this example. |
---|
763 | |
---|
764 | \begin{figure}[htp] |
---|
765 | \centerline{\includegraphics[height=75mm] |
---|
766 | {graphics/channel1.png}}% |
---|
767 | \caption{Simple channel example viewed with the \anuga viewer.} |
---|
768 | \label{fig:channel1} |
---|
769 | \end{figure} |
---|
770 | |
---|
771 | \subsection{Changing boundary conditions on the fly} |
---|
772 | \label{sec:change boundary} |
---|
773 | |
---|
774 | Here is the code for the second version of the channel flow \file{channel2.py}: |
---|
775 | |
---|
776 | \verbatiminput{demos/channel2.py} |
---|
777 | |
---|
778 | This example differs from the first version in that a constant outflow boundary condition has |
---|
779 | been defined: |
---|
780 | |
---|
781 | \begin{verbatim} |
---|
782 | Bo = Dirichlet_boundary([-5, 0, 0]) # Outflow |
---|
783 | \end{verbatim} |
---|
784 | |
---|
785 | and that it is applied to the right hand side boundary when the water level there exceeds 0m. |
---|
786 | |
---|
787 | \begin{verbatim} |
---|
788 | for t in domain.evolve(yieldstep=0.2, finaltime=40.0): |
---|
789 | domain.write_time() |
---|
790 | |
---|
791 | if domain.get_quantity('stage').get_values(interpolation_points=[[10, 2.5]]) > 0: |
---|
792 | print 'Stage > 0: Changing to outflow boundary' |
---|
793 | domain.set_boundary({'right': Bo}) |
---|
794 | \end{verbatim} |
---|
795 | |
---|
796 | \label{sec:change boundary code} |
---|
797 | The \code{if} statement in the timestepping loop (\code{evolve}) gets the quantity |
---|
798 | \code{stage} and obtains the interpolated value at the point (10m, |
---|
799 | 2.5m) which is on the right boundary. If the stage exceeds 0m a |
---|
800 | message is printed and the old boundary condition at tag 'right' is |
---|
801 | replaced by the outflow boundary using the method: |
---|
802 | |
---|
803 | \begin{verbatim} |
---|
804 | domain.set_boundary({'right': Bo}) |
---|
805 | \end{verbatim} |
---|
806 | |
---|
807 | This type of dynamically varying boundary could for example be |
---|
808 | used to model the breakdown of a sluice door when water exceeds a certain level. |
---|
809 | |
---|
810 | \subsection{Output} |
---|
811 | |
---|
812 | The text output from this example looks like this: |
---|
813 | |
---|
814 | \begin{verbatim} |
---|
815 | ... |
---|
816 | Time = 15.4000, delta t in [0.03789902, 0.03789916], steps=6 (6) |
---|
817 | Time = 15.6000, delta t in [0.03789896, 0.03789908], steps=6 (6) |
---|
818 | Time = 15.8000, delta t in [0.03789891, 0.03789903], steps=6 (6) |
---|
819 | Stage > 0: Changing to outflow boundary |
---|
820 | Time = 16.0000, delta t in [0.02709050, 0.03789898], steps=6 (6) |
---|
821 | Time = 16.2000, delta t in [0.03789892, 0.03789904], steps=6 (6) |
---|
822 | ... |
---|
823 | \end{verbatim} |
---|
824 | |
---|
825 | \subsection{Flow through more complex topograhies} |
---|
826 | |
---|
827 | Here is the code for the third version of the channel flow \file{channel3.py}: |
---|
828 | |
---|
829 | \verbatiminput{demos/channel3.py} |
---|
830 | |
---|
831 | This example differs from the first two versions in that the topography |
---|
832 | contains obstacles. |
---|
833 | |
---|
834 | This is accomplished here by defining the function \code{topography} as follows: |
---|
835 | |
---|
836 | \begin{verbatim} |
---|
837 | def topography(x,y): |
---|
838 | """Complex topography defined by a function of vectors x and y.""" |
---|
839 | |
---|
840 | z = -x/10 |
---|
841 | |
---|
842 | N = len(x) |
---|
843 | for i in range(N): |
---|
844 | # Step |
---|
845 | if 10 < x[i] < 12: |
---|
846 | z[i] += 0.4 - 0.05*y[i] |
---|
847 | |
---|
848 | # Constriction |
---|
849 | if 27 < x[i] < 29 and y[i] > 3: |
---|
850 | z[i] += 2 |
---|
851 | |
---|
852 | # Pole |
---|
853 | if (x[i] - 34)**2 + (y[i] - 2)**2 < 0.4**2: |
---|
854 | z[i] += 2 |
---|
855 | |
---|
856 | return z |
---|
857 | \end{verbatim} |
---|
858 | |
---|
859 | In addition, changing the resolution to \code{dx = dy = 0.1} creates a finer mesh resolving the new features better. |
---|
860 | |
---|
861 | A screenshot of this model at time 15s is: |
---|
862 | \begin{figure}[htp] |
---|
863 | \centerline{\includegraphics[height=75mm] |
---|
864 | {graphics/channel3.png}} |
---|
865 | \caption{More complex flow in a channel} |
---|
866 | \label{fig:channel3} |
---|
867 | \end{figure} |
---|
868 | |
---|
869 | |
---|
870 | \section{An Example with Real Data} |
---|
871 | |
---|
872 | \label{sec:realdataexample} The following discussion builds on the |
---|
873 | concepts introduced through the \file{runup.py} example and |
---|
874 | introduces a second example, \file{runcairns.py}. This refers to |
---|
875 | a {\bf hypothetical} scenario using real-life data, |
---|
876 | in which the domain of interest surrounds the |
---|
877 | Cairns region. Two scenarios are given; firstly, a |
---|
878 | hypothetical tsunami wave is generated by a submarine mass failure |
---|
879 | situated on the edge of the continental shelf, and secondly, a fixed wave |
---|
880 | of given amplitude and period is introduced through the boundary. |
---|
881 | |
---|
882 | {\bf |
---|
883 | Each scenario has been designed to generate a tsunami which will |
---|
884 | inundate the Cairns region. To achieve this, suitably large |
---|
885 | parameters were chosen and were not based on any known tsunami sources |
---|
886 | or realistic amplitudes. |
---|
887 | } |
---|
888 | |
---|
889 | \subsection{Overview} |
---|
890 | As in the case of \file{runup.py}, the actions carried |
---|
891 | out by the program can be organised according to this outline: |
---|
892 | \begin{enumerate} |
---|
893 | \item Set up a triangular mesh. |
---|
894 | |
---|
895 | \item Set certain parameters governing the mode of |
---|
896 | operation of the model -- specifying, for instance, where to store the |
---|
897 | model output. |
---|
898 | |
---|
899 | \item Input various quantities describing physical measurements, such |
---|
900 | as the elevation, to be specified at each mesh point (vertex). |
---|
901 | |
---|
902 | \item Set up the boundary conditions. |
---|
903 | |
---|
904 | \item Carry out the evolution of the model through a series of time |
---|
905 | steps and output the results, providing a results file that can be |
---|
906 | visualised. |
---|
907 | \end{enumerate} |
---|
908 | |
---|
909 | \subsection{The Code} |
---|
910 | |
---|
911 | Here is the code for \file{runcairns.py}: |
---|
912 | |
---|
913 | \verbatiminput{demos/cairns/runcairns.py} |
---|
914 | |
---|
915 | In discussing the details of this example, we follow the outline |
---|
916 | given above, discussing each major step of the code in turn. |
---|
917 | |
---|
918 | \subsection{Establishing the Mesh}\index{mesh, establishing} |
---|
919 | |
---|
920 | One obvious way that the present example differs from |
---|
921 | \file{runup.py} is in the use of a more complex method to |
---|
922 | create the mesh. Instead of imposing a mesh structure on a |
---|
923 | rectangular grid, the technique used for this example involves |
---|
924 | building mesh structures inside polygons specified by the user, |
---|
925 | using a mesh-generator. |
---|
926 | |
---|
927 | The mesh-generator creates the mesh within a single |
---|
928 | polygon whose vertices are at geographical locations specified by |
---|
929 | the user. The user specifies the \emph{resolution} -- that is, the |
---|
930 | maximal area of a triangle used for triangulation -- and a triangular |
---|
931 | mesh is created inside the polygon using a mesh generation engine. |
---|
932 | On any given platform, the same mesh will be returned each time the |
---|
933 | script is run. |
---|
934 | |
---|
935 | Boundary tags are not restricted to \code{'left'}, \code{'bottom'}, |
---|
936 | \code{'right'} and \code{'top'}, as in the case of |
---|
937 | \file{runup.py}. Instead the user specifies a list of |
---|
938 | tags appropriate to the configuration being modelled. |
---|
939 | |
---|
940 | In addition, the mesh-generator provides a way to adapt to geographic or |
---|
941 | other features in the landscape, whose presence may require an |
---|
942 | increase in resolution. This is done by allowing the user to specify |
---|
943 | a number of \emph{interior polygons}, each with a specified |
---|
944 | resolution. It is also |
---|
945 | possible to specify one or more 'holes' -- that is, areas bounded by |
---|
946 | polygons in which no triangulation is required. |
---|
947 | |
---|
948 | In its general form, the mesh-generator takes for its input a bounding |
---|
949 | polygon and (optionally) a list of interior polygons. The user |
---|
950 | specifies resolutions, both for the bounding polygon and for each of |
---|
951 | the interior polygons. Given this data, the mesh-generator first creates a |
---|
952 | triangular mesh with varying resolution. |
---|
953 | |
---|
954 | The function used to implement this process is |
---|
955 | \function{create\_domain\_from\_regions} which creates a Domain object as |
---|
956 | well as a mesh file. Its arguments include the |
---|
957 | bounding polygon and its resolution, a list of boundary tags, and a |
---|
958 | list of pairs \code{[polygon, resolution]} specifying the interior |
---|
959 | polygons and their resolutions. |
---|
960 | |
---|
961 | The resulting mesh is output to a \emph{mesh file}\index{mesh |
---|
962 | file}\label{def:mesh file}. This term is used to describe a file of |
---|
963 | a specific format used to store the data specifying a mesh. (There |
---|
964 | are in fact two possible formats for such a file: it can either be a |
---|
965 | binary file, with extension \code{.msh}, or an ASCII file, with |
---|
966 | extension \code{.tsh}. In the present case, the binary file format |
---|
967 | \code{.msh} is used. See Section \ref{sec:file formats} (page |
---|
968 | \pageref{sec:file formats}) for more on file formats. |
---|
969 | |
---|
970 | In practice, the details of the polygons used are read from a |
---|
971 | separate file \file{project.py}. Here is a complete listing of |
---|
972 | \file{project.py}: |
---|
973 | |
---|
974 | \verbatiminput{demos/cairns/project.py} |
---|
975 | |
---|
976 | Figure \ref{fig:cairns3d} illustrates the landscape of the region |
---|
977 | for the Cairns example. Understanding the landscape is important in |
---|
978 | determining the location and resolution of interior polygons. The |
---|
979 | supporting data is found in the ASCII grid, \code{cairns.asc}, which |
---|
980 | has been sourced from the publically available Australian Bathymetry |
---|
981 | and Topography Grid 2005, \cite{grid250}. The required resolution |
---|
982 | for inundation modelling will depend on the underlying topography and |
---|
983 | bathymetry; as the terrain becomes more complex, the desired resolution |
---|
984 | would decrease to the order of tens of metres. |
---|
985 | |
---|
986 | \clearpage |
---|
987 | |
---|
988 | \begin{figure}[htp] |
---|
989 | \centerline{\includegraphics[scale=0.5]{graphics/cairns3.jpg}} |
---|
990 | \caption{Landscape of the Cairns scenario.} |
---|
991 | \label{fig:cairns3d} |
---|
992 | \end{figure} |
---|
993 | |
---|
994 | The following statements are used to read in the specific polygons |
---|
995 | from \code{project.cairns} and assign a defined resolution to |
---|
996 | each polygon. |
---|
997 | |
---|
998 | \begin{verbatim} |
---|
999 | islands_res = 100000 |
---|
1000 | cairns_res = 100000 |
---|
1001 | shallow_res = 500000 |
---|
1002 | interior_regions = [[project.poly_cairns, cairns_res], |
---|
1003 | [project.poly_island0, islands_res], |
---|
1004 | [project.poly_island1, islands_res], |
---|
1005 | [project.poly_island2, islands_res], |
---|
1006 | [project.poly_island3, islands_res], |
---|
1007 | [project.poly_shallow, shallow_res]] |
---|
1008 | \end{verbatim} |
---|
1009 | |
---|
1010 | Figure \ref{fig:cairnspolys} |
---|
1011 | illustrates the polygons used for the Cairns scenario. |
---|
1012 | |
---|
1013 | \clearpage |
---|
1014 | |
---|
1015 | \begin{figure}[htp] |
---|
1016 | \centerline{\includegraphics[scale=0.5] |
---|
1017 | {graphics/cairnsmodel.jpg}} |
---|
1018 | \caption{Interior and bounding polygons for the Cairns example.} |
---|
1019 | \label{fig:cairnspolys} |
---|
1020 | \end{figure} |
---|
1021 | |
---|
1022 | The statement: |
---|
1023 | |
---|
1024 | \begin{verbatim} |
---|
1025 | remainder_res = 10000000 |
---|
1026 | domain = create_domain_from_regions(project.bounding_polygon, |
---|
1027 | boundary_tags={'top': [0], |
---|
1028 | 'ocean_east': [1], |
---|
1029 | 'bottom': [2], |
---|
1030 | 'onshore': [3]}, |
---|
1031 | maximum_triangle_area=project.default_res, |
---|
1032 | mesh_filename=project.meshname, |
---|
1033 | interior_regions=project.interior_regions, |
---|
1034 | use_cache=True, |
---|
1035 | verbose=True) |
---|
1036 | \end{verbatim} |
---|
1037 | |
---|
1038 | is then used to create the mesh, taking the bounding polygon to be |
---|
1039 | the polygon \code{bounding\_polygon} specified in \file{project.py}. |
---|
1040 | The argument \code{boundary\_tags} assigns a dictionary, whose keys |
---|
1041 | are the names of the boundary tags used for the bounding |
---|
1042 | polygon -- \code{'top'}, \code{'ocean\_east'}, \code{'bottom'}, and |
---|
1043 | \code{'onshore'} -- and whose values identify the indices of the |
---|
1044 | segments associated with each of these tags. |
---|
1045 | The polygon may be arranged either clock-wise or counter clock-wise and the |
---|
1046 | indices refer to edges in the order they appear: Edge 0 connects vertex 0 and vertex 1, edge 1 connects vertex 1 and 2; and so forth. |
---|
1047 | (Here, the values associated with each boundary tag are one-element lists, but they can have as many indices as there are edges) |
---|
1048 | If polygons intersect, or edges coincide (or are even very close) the resolution may be undefined in some regions. |
---|
1049 | Use the underlying mesh interface for such cases |
---|
1050 | (see Chapter \ref{sec:mesh interface}). |
---|
1051 | If a segment is omitted in the tags definition an Exception is raised. |
---|
1052 | |
---|
1053 | Note that every point on each polygon defining the mesh will be used as vertices in triangles. |
---|
1054 | Consequently, polygons with points very close together will cause triangles with very small |
---|
1055 | areas to be generated irrespective of the requested resolution. |
---|
1056 | Make sure points on polygons are spaced to be no closer than the smallest resolution requested. |
---|
1057 | |
---|
1058 | \subsection{Initialising the Domain} |
---|
1059 | |
---|
1060 | Since we used \code{create_domain_from_regions} to create the mesh file, we do not need to |
---|
1061 | create the domain explicitly, as the above function does both mesh and domain creation. |
---|
1062 | |
---|
1063 | The following statements specify a basename and data directory, and |
---|
1064 | sets a minimum storable height, which helps with visualisation and post-processing |
---|
1065 | if one wants to remove water less than 1cm deep (for instance). |
---|
1066 | |
---|
1067 | \begin{verbatim} |
---|
1068 | domain.set_name('cairns_' + project.scenario) # Name of SWW file |
---|
1069 | domain.set_datadir('.') # Store SWW output here |
---|
1070 | domain.set_minimum_storable_height(0.01) # Store only depth > 1cm |
---|
1071 | \end{verbatim} |
---|
1072 | |
---|
1073 | \subsection{Initial Conditions} |
---|
1074 | |
---|
1075 | Quantities for \file{runcairns.py} are set |
---|
1076 | using similar methods to those in \file{runup.py}. However, |
---|
1077 | in this case, many of the values are read from the auxiliary file |
---|
1078 | \file{project.py} or, in the case of \code{elevation}, from an |
---|
1079 | auxiliary points file. |
---|
1080 | |
---|
1081 | \subsubsection{Stage} |
---|
1082 | |
---|
1083 | The stage is initially set to 0.0 (i.e.\ Mean Sea Level) by the following statements: |
---|
1084 | |
---|
1085 | \begin{verbatim} |
---|
1086 | tide = 0.0 |
---|
1087 | domain.set_quantity('stage', tide) |
---|
1088 | \end{verbatim} |
---|
1089 | |
---|
1090 | It could also take the value of the highest astronomical tide. |
---|
1091 | |
---|
1092 | %For the scenario we are modelling in this case, we use a callable |
---|
1093 | %object \code{tsunami_source}, assigned by means of a function |
---|
1094 | %\function{slide\_tsunami}. This is similar to how we set elevation in |
---|
1095 | %\file{runup.py} using a function -- however, in this case the |
---|
1096 | %function is both more complex and more interesting. |
---|
1097 | |
---|
1098 | %The function returns the water displacement for all \code{x} and |
---|
1099 | %\code{y} in the domain. The water displacement is a double Gaussian |
---|
1100 | %function that depends on the characteristics of the slide (length, |
---|
1101 | %width, thickness, slope, etc), its location (origin) and the depth at that |
---|
1102 | %location. For this example, we choose to apply the slide function |
---|
1103 | %at a specified time into the simulation. {\bf Note, the parameters used |
---|
1104 | %in this example have been deliberately chosen to generate a suitably |
---|
1105 | %large amplitude tsunami which would inundate the Cairns region.} |
---|
1106 | |
---|
1107 | \subsubsection{Friction} |
---|
1108 | |
---|
1109 | We assign the friction exactly as we did for \file{runup.py}: |
---|
1110 | |
---|
1111 | \begin{verbatim} |
---|
1112 | domain.set_quantity('friction', 0.0) |
---|
1113 | \end{verbatim} |
---|
1114 | |
---|
1115 | \subsubsection{Elevation} |
---|
1116 | |
---|
1117 | The elevation is specified by reading data from a file with a name derived from |
---|
1118 | \code{project.demname} with the \code{.pts} extension: |
---|
1119 | |
---|
1120 | \begin{verbatim} |
---|
1121 | domain.set_quantity('elevation', |
---|
1122 | filename=project.demname + '.pts', |
---|
1123 | use_cache=True, |
---|
1124 | verbose=True, |
---|
1125 | alpha=0.1) |
---|
1126 | \end{verbatim} |
---|
1127 | |
---|
1128 | The \code{alpha} parameter controls how smooth the elevation surface |
---|
1129 | should be. See section \ref{class:alpha_shape}, page \pageref{class:alpha_shape}. |
---|
1130 | |
---|
1131 | Setting \code{cache=True} allows \anuga to save the result in order |
---|
1132 | to make subsequent runs faster. |
---|
1133 | |
---|
1134 | Using \code{verbose=True} tells the function to write diagnostics to |
---|
1135 | the screen. |
---|
1136 | |
---|
1137 | \subsection{Boundary Conditions}\index{boundary conditions} |
---|
1138 | |
---|
1139 | Setting boundaries follows a similar pattern to the one used for |
---|
1140 | \file{runup.py}, except that in this case we need to associate a |
---|
1141 | boundary type with each of the |
---|
1142 | boundary tag names introduced when we established the mesh. In place of the four |
---|
1143 | boundary types introduced for \file{runup.py}, we use the reflective |
---|
1144 | boundary for each of the tagged segments defined by \code{create_domain_from_regions}: |
---|
1145 | |
---|
1146 | \begin{verbatim} |
---|
1147 | Bd = Dirichlet_boundary([tide,0,0]) # Mean water level |
---|
1148 | Bs = Transmissive_stage_zero_momentum_boundary(domain) # Neutral boundary |
---|
1149 | |
---|
1150 | if project.scenario == 'fixed_wave': |
---|
1151 | # Huge 50m wave starting after 60 seconds and lasting 1 hour. |
---|
1152 | Bw = Time_boundary(domain=domain, |
---|
1153 | function=lambda t: [(60<t<3660)*50, 0, 0]) |
---|
1154 | domain.set_boundary({'ocean_east': Bw, |
---|
1155 | 'bottom': Bs, |
---|
1156 | 'onshore': Bd, |
---|
1157 | 'top': Bs}) |
---|
1158 | |
---|
1159 | if project.scenario == 'slide': |
---|
1160 | # Boundary conditions for slide scenario |
---|
1161 | domain.set_boundary({'ocean_east': Bd, |
---|
1162 | 'bottom': Bd, |
---|
1163 | 'onshore': Bd, |
---|
1164 | 'top': Bd}) |
---|
1165 | \end{verbatim} |
---|
1166 | |
---|
1167 | Note that we use different boundary conditions depending on the \code{scenario} |
---|
1168 | defined in \file{project.py}. |
---|
1169 | |
---|
1170 | It is not a requirement in \anuga to have this code structure, just an example of |
---|
1171 | how the script can take different actions depending on a variable. |
---|
1172 | |
---|
1173 | \subsection{Evolution} |
---|
1174 | |
---|
1175 | With the basics established, the running of the 'evolve' step is |
---|
1176 | very similar to the corresponding step in \file{runup.py}, except we have different \code{evolve} |
---|
1177 | loops for the two scenarios. |
---|
1178 | |
---|
1179 | For the slide scenario, the simulation is run for an intial 60 seconds, at which time |
---|
1180 | the slide occurs. We use the function \function{tsunami_source} to adjust \code{stage} |
---|
1181 | values. We then run the simulation until 5000 seconds with the output stored |
---|
1182 | every ten seconds: |
---|
1183 | |
---|
1184 | \begin{verbatim} |
---|
1185 | if project.scenario == 'slide': |
---|
1186 | # Initial run without any event |
---|
1187 | for t in domain.evolve(yieldstep=10, finaltime=60): |
---|
1188 | print domain.timestepping_statistics() |
---|
1189 | print domain.boundary_statistics(tags='ocean_east') |
---|
1190 | |
---|
1191 | # Add slide to water surface |
---|
1192 | if allclose(t, 60): |
---|
1193 | domain.add_quantity('stage', tsunami_source) |
---|
1194 | |
---|
1195 | # Continue propagating wave |
---|
1196 | for t in domain.evolve(yieldstep=10, finaltime=5000, |
---|
1197 | skip_initial_step=True): |
---|
1198 | print domain.timestepping_statistics() |
---|
1199 | print domain.boundary_statistics(tags='ocean_east') |
---|
1200 | |
---|
1201 | if project.scenario == 'fixed_wave': |
---|
1202 | # Save every two mins leading up to wave approaching land |
---|
1203 | for t in domain.evolve(yieldstep=120, finaltime=5000): |
---|
1204 | print domain.timestepping_statistics() |
---|
1205 | print domain.boundary_statistics(tags='ocean_east') |
---|
1206 | |
---|
1207 | # Save every 30 secs as wave starts inundating ashore |
---|
1208 | for t in domain.evolve(yieldstep=10, finaltime=10000, |
---|
1209 | skip_initial_step=True): |
---|
1210 | print domain.timestepping_statistics() |
---|
1211 | print domain.boundary_statistics(tags='ocean_east') |
---|
1212 | \end{verbatim} |
---|
1213 | |
---|
1214 | For the fixed wave scenario, the simulation is run to 10000 seconds, |
---|
1215 | with the first half of the simulation stored at two minute intervals, |
---|
1216 | and the second half of the simulation stored at ten second intervals. |
---|
1217 | This functionality is especially convenient as it allows the detailed |
---|
1218 | parts of the simulation to be viewed at higher time resolution. |
---|
1219 | |
---|
1220 | This also demonstrates the ability of \anuga to dynamically override values. The |
---|
1221 | \code{method add_quantity()} works like \code{set_quantity()} except that it adds the new |
---|
1222 | surface to what exists already. In this case it adds the initial shape of the water |
---|
1223 | displacement to the water level. |
---|
1224 | |
---|
1225 | \section{Exploring the Model Output} |
---|
1226 | |
---|
1227 | Now that the scenario has been run, the user can view the output in a number of ways. |
---|
1228 | As described earlier, the user may run \code{animate} to view a three-dimensional representation |
---|
1229 | of the simulation. |
---|
1230 | |
---|
1231 | The user may also be interested in a maximum inundation map. This simply shows the |
---|
1232 | maximum water depth over the domain and is achieved with the function \code{sww2dem} |
---|
1233 | described in Section \ref{sec:basicfileconversions}). |
---|
1234 | \file{ExportResults.py} demonstrates how this function can be used: |
---|
1235 | |
---|
1236 | \verbatiminput{demos/cairns/ExportResults.py} |
---|
1237 | |
---|
1238 | The script generates a maximum water depth ASCII grid at a defined |
---|
1239 | resolution (here 100 m$^2$) which can then be viewed in a GIS environment, for |
---|
1240 | example. The parameters used in the function are defined in \file{project.py}. |
---|
1241 | Figures \ref{fig:maxdepthcairnsslide} and \ref{fig:maxdepthcairnsfixedwave} show |
---|
1242 | the maximum water depth within the defined region for the slide and fixed wave scenario |
---|
1243 | respectively. {\bf Note, these inundation maps have been based on purely hypothetical |
---|
1244 | scenarios and were designed explicitly for demonstration purposes only.} |
---|
1245 | The user could develop a maximum absolute momentum or other expressions which can be |
---|
1246 | derived from the quantities. |
---|
1247 | It must be noted here that depth is more meaningful when the elevation is positive |
---|
1248 | (\code{depth} = \code{stage} $-$ \code{elevation}) as it describes the water height |
---|
1249 | above the available elevation. When the elevation is negative, depth is meauring the |
---|
1250 | water height from the sea floor. With this in mind, maximum inundation maps are |
---|
1251 | typically "clipped" to the coastline. However, the data input here did not contain a |
---|
1252 | coastline. |
---|
1253 | |
---|
1254 | \clearpage |
---|
1255 | |
---|
1256 | \begin{figure}[htp] |
---|
1257 | \centerline{\includegraphics[scale=0.5]{graphics/slidedepth.jpg}} |
---|
1258 | \caption{Maximum inundation map for the Cairns slide scenario. \bf Note, this |
---|
1259 | inundation map has been based on a purely hypothetical scenario which was |
---|
1260 | designed explictiy for demonstration purposes only.} |
---|
1261 | \label{fig:maxdepthcairnsslide} |
---|
1262 | \end{figure} |
---|
1263 | |
---|
1264 | \clearpage |
---|
1265 | |
---|
1266 | \begin{figure}[htp] |
---|
1267 | \centerline{\includegraphics[scale=0.5]{graphics/fixedwavedepth.jpg}} |
---|
1268 | \caption{Maximum inundation map for the Cairns fixed wave scenario. |
---|
1269 | \bf Note, this inundation map has been based on a purely hypothetical scenario which was |
---|
1270 | designed explictiy for demonstration purposes only.} |
---|
1271 | \label{fig:maxdepthcairnsfixedwave} |
---|
1272 | \end{figure} |
---|
1273 | |
---|
1274 | \clearpage |
---|
1275 | |
---|
1276 | The user may also be interested in interrogating the solution at a particular spatial |
---|
1277 | location to understand the behaviour of the system through time. To do this, the user |
---|
1278 | must first define the locations of interest. A number of locations have been |
---|
1279 | identified for the Cairns scenario, as shown in Figure \ref{fig:cairnsgauges}. |
---|
1280 | |
---|
1281 | \begin{figure}[htp] |
---|
1282 | \centerline{\includegraphics[scale=0.5]{graphics/cairnsgauges.jpg}} |
---|
1283 | \caption{Point locations to show time series information for the Cairns scenario.} |
---|
1284 | \label{fig:cairnsgauges} |
---|
1285 | \end{figure} |
---|
1286 | |
---|
1287 | These locations |
---|
1288 | must be stored in either a .csv or .txt file. The corresponding .csv file for |
---|
1289 | the gauges shown in Figure \ref{fig:cairnsgauges} is \file{gauges.csv}: |
---|
1290 | |
---|
1291 | \verbatiminput{demos/cairns/gauges.csv} |
---|
1292 | |
---|
1293 | Header information has been included to identify the location in terms of eastings and |
---|
1294 | northings, and each gauge is given a name. The elevation column can be zero here. |
---|
1295 | This information is then passed to the function \code{sww2csv_gauges} (shown in |
---|
1296 | \file{GetTimeseries.py} which generates the csv files for each point location. The CSV files |
---|
1297 | can then be used in \code{csv2timeseries_graphs} to create the timeseries plot for each desired |
---|
1298 | quantity. \code{csv2timeseries_graphs} relies on \code{pylab} to be installed which is not part |
---|
1299 | of the standard \code{anuga} release, however it can be downloaded and installed from \code{http://matplotlib.sourceforge.net/} |
---|
1300 | |
---|
1301 | \verbatiminput{demos/cairns/GetTimeseries.py} |
---|
1302 | |
---|
1303 | Here, the time series for the quantities stage, depth and speed will be generated for |
---|
1304 | each gauge defined in the gauge file. As described earlier, depth is more meaningful |
---|
1305 | for onshore gauges, and stage is more appropriate for offshore gauges. |
---|
1306 | |
---|
1307 | As an example output, |
---|
1308 | Figure \ref{fig:reef} shows the time series for the quantity stage for the |
---|
1309 | Elford Reef location for each scenario (the elevation at this location is negative, |
---|
1310 | therefore stage is the more appropriate quantity to plot). Note the large negative stage value when the slide was |
---|
1311 | introduced. This is due to the double gaussian form of the initial surface |
---|
1312 | displacement of the slide. By contrast, the time series for depth is shown for the onshore location of the Cairns |
---|
1313 | Airport in Figure \ref{fig:airportboth}. |
---|
1314 | |
---|
1315 | \begin{figure}[htp] |
---|
1316 | \centerline{\includegraphics[scale=0.5]{graphics/gaugeElfordReefstage.png}} |
---|
1317 | \caption{Time series information of the quantity stage for the Elford Reef location for the |
---|
1318 | fixed wave and slide scenario.} |
---|
1319 | \label{fig:reef} |
---|
1320 | \end{figure} |
---|
1321 | |
---|
1322 | \begin{figure}[htp] |
---|
1323 | \centerline{\includegraphics[scale=0.5]{graphics/gaugeCairnsAirportdepth.png}} |
---|
1324 | \caption{Time series information of the quantity depth for the Cairns Airport |
---|
1325 | location for the slide and fixed wave scenario.} |
---|
1326 | \label{fig:airportboth} |
---|
1327 | \end{figure} |
---|
1328 | |
---|
1329 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
1330 | |
---|
1331 | \chapter{\anuga Public Interface} |
---|
1332 | \label{ch:interface} |
---|
1333 | |
---|
1334 | This chapter gives an overview of the features of \anuga available |
---|
1335 | to the user at the public interface. These are grouped under the |
---|
1336 | following headings, which correspond to the outline of the examples |
---|
1337 | described in Chapter \ref{ch:getstarted}: |
---|
1338 | \begin{itemize} |
---|
1339 | \item Establishing the Mesh: Section \ref{sec:establishing the mesh} |
---|
1340 | \item Initialising the Domain: Section \ref{sec:initialising the domain} |
---|
1341 | % \item Specifying the Quantities: Section \ref{sec:quantities} |
---|
1342 | \item Initial Conditions: Section \ref{sec:initial conditions} |
---|
1343 | \item Boundary Conditions: Section \ref{sec:boundary conditions} |
---|
1344 | \item Forcing Terms: Section \ref{sec:forcing terms} |
---|
1345 | \item Evolution: Section \ref{sec:evolution} |
---|
1346 | \end{itemize} |
---|
1347 | |
---|
1348 | The listings are intended merely to give the reader an idea of what |
---|
1349 | each feature is, where to find it and how it can be used -- they do |
---|
1350 | not give full specifications; for these the reader |
---|
1351 | may consult the code. The code for every function or class contains |
---|
1352 | a documentation string, or 'docstring', that specifies the precise |
---|
1353 | syntax for its use. This appears immediately after the line |
---|
1354 | introducing the code, between two sets of triple quotes. |
---|
1355 | |
---|
1356 | Each listing also describes the location of the module in which |
---|
1357 | the code for the feature being described can be found. All modules |
---|
1358 | are in the folder \file{inundation} or one of its subfolders, and the |
---|
1359 | location of each module is described relative to \file{inundation}. Rather |
---|
1360 | than using pathnames, whose syntax depends on the operating system, |
---|
1361 | we use the format adopted for importing the function or class for |
---|
1362 | use in Python code. For example, suppose we wish to specify that the |
---|
1363 | function \function{create\_mesh\_from\_regions} is in a module called |
---|
1364 | \module{mesh\_interface} in a subfolder of \module{inundation} called |
---|
1365 | \code{pmesh}. In Linux or Unix syntax, the pathname of the file |
---|
1366 | containing the function, relative to \file{inundation}, would be: |
---|
1367 | |
---|
1368 | \begin{verbatim} |
---|
1369 | pmesh/mesh_interface.py |
---|
1370 | \end{verbatim} |
---|
1371 | |
---|
1372 | \label{sec:mesh interface} |
---|
1373 | while in Windows syntax it would be: |
---|
1374 | |
---|
1375 | \begin{verbatim} |
---|
1376 | pmesh\mesh_interface.py |
---|
1377 | \end{verbatim} |
---|
1378 | |
---|
1379 | Rather than using either of these forms, in this chapter we specify |
---|
1380 | the location simply as \code{pmesh.mesh_interface}, in keeping with |
---|
1381 | the usage in the Python statement for importing the function, |
---|
1382 | namely: |
---|
1383 | |
---|
1384 | \begin{verbatim} |
---|
1385 | from pmesh.mesh_interface import create_mesh_from_regions |
---|
1386 | \end{verbatim} |
---|
1387 | |
---|
1388 | Each listing details the full set of parameters for the class or |
---|
1389 | function; however, the description is generally limited to the most |
---|
1390 | important parameters and the reader is again referred to the code |
---|
1391 | for more details. |
---|
1392 | |
---|
1393 | The following parameters are common to many functions and classes |
---|
1394 | and are omitted from the descriptions given below: |
---|
1395 | |
---|
1396 | %\begin{tabular}{ll} |
---|
1397 | \begin{tabular}{p{2.0cm} p{14.0cm}} |
---|
1398 | \emph{use\_cache} & Specifies whether caching is to be used for improved performance. |
---|
1399 | See Section \ref{sec:caching} for details on the underlying caching functionality\\ |
---|
1400 | \emph{verbose} & If \code{True}, provides detailed terminal output to the user\\ |
---|
1401 | \end{tabular} |
---|
1402 | |
---|
1403 | |
---|
1404 | \section{Mesh Generation}\index{Mesh!generation} |
---|
1405 | \label{sec:establishing the mesh} |
---|
1406 | Before discussing the part of the interface relating to mesh |
---|
1407 | generation, we begin with a description of a simple example of a |
---|
1408 | mesh and use it to describe how mesh data is stored. |
---|
1409 | |
---|
1410 | \label{sec:meshexample} Figure \ref{fig:simplemesh} represents a |
---|
1411 | very simple mesh comprising just 11 points and 10 triangles. |
---|
1412 | |
---|
1413 | \begin{figure}[htp] |
---|
1414 | \begin{center} |
---|
1415 | \includegraphics[width=90mm, height=90mm]{triangularmesh.jpg} |
---|
1416 | \end{center} |
---|
1417 | \caption{A simple mesh} |
---|
1418 | \label{fig:simplemesh} |
---|
1419 | \end{figure} |
---|
1420 | |
---|
1421 | \clearpage |
---|
1422 | |
---|
1423 | The variables \code{points}, \code{triangles} and \code{boundary} |
---|
1424 | represent the data displayed in Figure \ref{fig:simplemesh} as |
---|
1425 | follows. The list \code{points} stores the coordinates of the |
---|
1426 | points, and may be displayed schematically as in Table \ref{tab:points}. |
---|
1427 | |
---|
1428 | \begin{table}[htp] |
---|
1429 | \begin{center} |
---|
1430 | \begin{tabular}[t]{|c|cc|} \hline |
---|
1431 | index & \code{x} & \code{y}\\ \hline |
---|
1432 | 0 & 1 & 1\\ |
---|
1433 | 1 & 4 & 2\\ |
---|
1434 | 2 & 8 & 1\\ |
---|
1435 | 3 & 1 & 3\\ |
---|
1436 | 4 & 5 & 5\\ |
---|
1437 | 5 & 8 & 6\\ |
---|
1438 | 6 & 11 & 5\\ |
---|
1439 | 7 & 3 & 6\\ |
---|
1440 | 8 & 1 & 8\\ |
---|
1441 | 9 & 4 & 9\\ |
---|
1442 | 10 & 10 & 7\\ \hline |
---|
1443 | \end{tabular} |
---|
1444 | \end{center} |
---|
1445 | \caption{Point coordinates for mesh in Figure \protect \ref{fig:simplemesh}} |
---|
1446 | \label{tab:points} |
---|
1447 | \end{table} |
---|
1448 | |
---|
1449 | The list \code{triangles} specifies the triangles that make up the |
---|
1450 | mesh. It does this by specifying, for each triangle, the indices |
---|
1451 | (the numbers shown in the first column above) that correspond to the |
---|
1452 | three points at the triangles vertices, taken in an anti-clockwise order |
---|
1453 | around the triangle. Thus, in the example shown in Figure |
---|
1454 | \ref{fig:simplemesh}, the variable \code{triangles} contains the |
---|
1455 | entries shown in Table \ref{tab:triangles}. The starting point is |
---|
1456 | arbitrary so triangle $(0,1,3)$ is considered the same as $(1,3,0)$ |
---|
1457 | and $(3,0,1)$. |
---|
1458 | |
---|
1459 | \begin{table}[htp] |
---|
1460 | \begin{center} |
---|
1461 | \begin{tabular}{|c|ccc|} |
---|
1462 | \hline |
---|
1463 | index & \multicolumn{3}{c|}{\code{points}}\\ |
---|
1464 | \hline |
---|
1465 | 0 & 0 & 1 & 3\\ |
---|
1466 | 1 & 1 & 2 & 4\\ |
---|
1467 | 2 & 2 & 5 & 4\\ |
---|
1468 | 3 & 2 & 6 & 5\\ |
---|
1469 | 4 & 4 & 5 & 9\\ |
---|
1470 | 5 & 4 & 9 & 7\\ |
---|
1471 | 6 & 3 & 4 & 7\\ |
---|
1472 | 7 & 7 & 9 & 8\\ |
---|
1473 | 8 & 1 & 4 & 3\\ |
---|
1474 | 9 & 5 & 10 & 9\\ |
---|
1475 | \hline |
---|
1476 | \end{tabular} |
---|
1477 | \end{center} |
---|
1478 | |
---|
1479 | \caption{Triangles for mesh in Figure \protect \ref{fig:simplemesh}} |
---|
1480 | \label{tab:triangles} |
---|
1481 | \end{table} |
---|
1482 | |
---|
1483 | Finally, the variable \code{boundary} identifies the boundary |
---|
1484 | triangles and associates a tag with each. |
---|
1485 | |
---|
1486 | % \refmodindex[pmesh.meshinterface]{pmesh.mesh\_interface} |
---|
1487 | \label{sec:meshgeneration} |
---|
1488 | |
---|
1489 | \begin{funcdesc}{create_mesh_from_regions}{bounding_polygon, |
---|
1490 | boundary_tags, |
---|
1491 | maximum_triangle_area=None, |
---|
1492 | filename=None, |
---|
1493 | interior_regions=None, |
---|
1494 | interior_holes=None, |
---|
1495 | poly_geo_reference=None, |
---|
1496 | mesh_geo_reference=None, |
---|
1497 | minimum_triangle_angle=28.0, |
---|
1498 | fail_if_polygons_outside=True, |
---|
1499 | use_cache=False, |
---|
1500 | verbose=True} |
---|
1501 | Module: \module{pmesh.mesh\_interface} |
---|
1502 | |
---|
1503 | This function allows a user to initiate the automatic creation of a |
---|
1504 | mesh inside a specified polygon (input \code{bounding_polygon}). |
---|
1505 | Among the parameters that can be set are the \emph{resolution} |
---|
1506 | (maximal area for any triangle in the mesh) and the minimal angle |
---|
1507 | allowable in any triangle. The user can specify a number of internal |
---|
1508 | polygons within each of which the resolution of the mesh can be |
---|
1509 | specified. \code{interior_regions} is a paired list containing the |
---|
1510 | interior polygon and its resolution. Additionally, the user specifies |
---|
1511 | a list of boundary tags, one for each edge of the bounding polygon. |
---|
1512 | |
---|
1513 | \textbf{WARNING}. Note that the dictionary structure used for the |
---|
1514 | parameter \code{boundary\_tags} is different from that used for the |
---|
1515 | variable \code{boundary} that occurs in the specification of a mesh. |
---|
1516 | In the case of \code{boundary}, the tags are the \emph{values} of |
---|
1517 | the dictionary, whereas in the case of \code{boundary_tags}, the |
---|
1518 | tags are the \emph{keys} and the \emph{value} corresponding to a |
---|
1519 | particular tag is a list of numbers identifying boundary edges |
---|
1520 | labelled with that tag. Because of this, it is theoretically |
---|
1521 | possible to assign the same edge to more than one tag. However, an |
---|
1522 | attempt to do this will cause an error. |
---|
1523 | |
---|
1524 | \textbf{WARNING}. Do not have polygon lines cross or be on-top of each |
---|
1525 | other. This can result in regions of unspecified resolutions. Do |
---|
1526 | not have polygon close to each other. This can result in the area |
---|
1527 | between the polygons having small triangles. For more control |
---|
1528 | over the mesh outline use the methods described below. |
---|
1529 | |
---|
1530 | \end{funcdesc} |
---|
1531 | |
---|
1532 | \begin{funcdesc}{create_domain_from_regions}{bounding_polygon, |
---|
1533 | boundary_tags, |
---|
1534 | maximum_triangle_area=None, |
---|
1535 | mesh_filename=None, |
---|
1536 | interior_regions=None, |
---|
1537 | interior_holes=None, |
---|
1538 | poly_geo_reference=None, |
---|
1539 | mesh_geo_reference=None, |
---|
1540 | minimum_triangle_angle=28.0, |
---|
1541 | fail_if_polygons_outside=True, |
---|
1542 | use_cache=False, |
---|
1543 | verbose=True} |
---|
1544 | |
---|
1545 | Module: \module{interface.py} |
---|
1546 | |
---|
1547 | This higher-level function allows a user to create a domain (and associated mesh) |
---|
1548 | inside a specified polygon. |
---|
1549 | |
---|
1550 | \code{bounding_polygon} is a list of points in Eastings and Northings, |
---|
1551 | relative to the zone stated in \code{poly_geo_reference} if specified. |
---|
1552 | Otherwise points are just x, y coordinates with no particular |
---|
1553 | association to any location. |
---|
1554 | |
---|
1555 | \code{boundary_tags} is a dictionary of symbolic tags. For every tag there |
---|
1556 | is a list of indices referring to segments associated with that tag. |
---|
1557 | If a segment is omitted it will be assigned the default tag ''. |
---|
1558 | |
---|
1559 | \code{maximum_triangle_area} is the maximal area per triangle |
---|
1560 | for the bounding polygon, excluding the interior regions. |
---|
1561 | |
---|
1562 | \code{mesh_filename} is the name of the file to contain the generated |
---|
1563 | mesh data. |
---|
1564 | |
---|
1565 | \code{interior_regions} is a list of tuples consisting of (polygon, |
---|
1566 | resolution) for each region to be separately refined. Do not have |
---|
1567 | polygon lines cross or be on-top of each other. Also do not have |
---|
1568 | polygons close to each other. |
---|
1569 | |
---|
1570 | \code{poly_geo_reference} is the geo_reference of the bounding polygon and |
---|
1571 | the interior polygons. |
---|
1572 | If none, assume absolute. Please pass one though, since absolute |
---|
1573 | references have a zone. |
---|
1574 | |
---|
1575 | \code{mesh_geo_reference} is the geo_reference of the mesh to be created. |
---|
1576 | If none is given one will be automatically generated. It will use |
---|
1577 | the lower left hand corner of bounding_polygon (absolute) |
---|
1578 | as the x and y values for the geo_ref. |
---|
1579 | |
---|
1580 | \code{minimum_triangle_angle} is the minimum angle allowed for each generated triangle. |
---|
1581 | This controls the \emph{slimness} allowed for a triangle. |
---|
1582 | |
---|
1583 | \code{fail_if_polygons_outside} -- if True (the default) an Exception in thrown |
---|
1584 | if interior polygons fall outside the bounding polygon. If False, these |
---|
1585 | will be ignored and execution continues. |
---|
1586 | |
---|
1587 | \textbf{WARNING}. Note that the dictionary structure used for the |
---|
1588 | parameter \code{boundary_tags} is different from that used for the |
---|
1589 | variable \code{boundary} that occurs in the specification of a mesh. |
---|
1590 | In the case of \code{boundary}, the tags are the \emph{values} of |
---|
1591 | the dictionary, whereas in the case of \code{boundary_tags}, the |
---|
1592 | tags are the \emph{keys} and the \emph{value} corresponding to a |
---|
1593 | particular tag is a list of numbers identifying boundary edges |
---|
1594 | labelled with that tag. Because of this, it is theoretically |
---|
1595 | possible to assign the same edge to more than one tag. However, an |
---|
1596 | attempt to do this will cause an error. |
---|
1597 | |
---|
1598 | \textbf{WARNING}. Do not have polygon lines cross or be on-top of each |
---|
1599 | other. This can result in regions of unspecified resolutions. Do |
---|
1600 | not have polygon close to each other. This can result in the area |
---|
1601 | between the polygons having small triangles. For more control |
---|
1602 | over the mesh outline use the methods described below. |
---|
1603 | |
---|
1604 | \end{funcdesc} |
---|
1605 | |
---|
1606 | \subsection{Advanced mesh generation} |
---|
1607 | |
---|
1608 | For more control over the creation of the mesh outline, use the |
---|
1609 | methods of the class \class{Mesh}. |
---|
1610 | |
---|
1611 | \begin{classdesc}{Mesh}{userSegments=None, |
---|
1612 | userVertices=None, |
---|
1613 | holes=None, |
---|
1614 | regions=None, |
---|
1615 | geo_reference=None} |
---|
1616 | Module: \module{pmesh.mesh} |
---|
1617 | |
---|
1618 | A class used to build a mesh outline and generate a two-dimensional |
---|
1619 | triangular mesh. The mesh outline is used to describe features on the |
---|
1620 | mesh, such as the mesh boundary. Many of this class's methods are used |
---|
1621 | to build a mesh outline, such as \code{add_vertices()} and |
---|
1622 | \code{add_region_from_polygon()}. |
---|
1623 | |
---|
1624 | \code{userSegments} and \code{userVertices} define the outline enclosing the mesh. |
---|
1625 | |
---|
1626 | \code{holes} describes any regions inside the mesh that are not to be included in the mesh. |
---|
1627 | |
---|
1628 | \code{geo_reference} defines the geo_reference to which all point information is relative. |
---|
1629 | If \code{geo_reference} is \code{None} then the default geo_reference is used. |
---|
1630 | \end{classdesc} |
---|
1631 | |
---|
1632 | \subsubsection{Key Methods of Class Mesh} |
---|
1633 | |
---|
1634 | \begin{methoddesc}{\emph{<mesh>}.add_hole}{x, y, geo_reference=None} |
---|
1635 | Module: \module{pmesh.mesh} |
---|
1636 | |
---|
1637 | This method adds a hole to the mesh outline. |
---|
1638 | |
---|
1639 | \code{x} and \code{y} define a point on the already defined hole boundary. |
---|
1640 | |
---|
1641 | If \code{geo_reference} is not supplied the points are assumed to be absolute. |
---|
1642 | \end{methoddesc} |
---|
1643 | |
---|
1644 | \begin{methoddesc}{\emph{<mesh>}.add_hole_from_polygon}{polygon, |
---|
1645 | segment_tags=None, |
---|
1646 | geo_reference=None} |
---|
1647 | Module: \module{pmesh.mesh} |
---|
1648 | |
---|
1649 | This method is used to add a 'hole' within a region -- that is, to |
---|
1650 | define a interior region where the triangular mesh will not be |
---|
1651 | generated -- to a \class{Mesh} instance. The region boundary is described by |
---|
1652 | the polygon passed in. Additionally, the user specifies a list of |
---|
1653 | boundary tags, one for each edge of the bounding polygon. |
---|
1654 | |
---|
1655 | \code{polygon} is the polygon that defines the hole to be added to the \code{<mesh>}. |
---|
1656 | |
---|
1657 | \code{segment_tags} -- ?? |
---|
1658 | |
---|
1659 | If \code{geo_reference} is \code{None} then the default \code{geo_reference} is used. |
---|
1660 | \end{methoddesc} |
---|
1661 | |
---|
1662 | \begin{methoddesc}{\emph{<mesh>}.add_points_and_segments}{points, |
---|
1663 | segments=None, |
---|
1664 | segment_tags=None} |
---|
1665 | Module: \module{pmesh.mesh} |
---|
1666 | |
---|
1667 | This adds points and segments connecting the points to a mesh. |
---|
1668 | |
---|
1669 | \code{points} is a list of points. |
---|
1670 | |
---|
1671 | \code{segments} is a list of segments. Each segment is defined by the start and end |
---|
1672 | of the line by its point index, e.g.\ use \code{segments = [[0,1],[1,2]]} to make a |
---|
1673 | polyline between points 0, 1 and 2. |
---|
1674 | |
---|
1675 | \code{segment_tags} may be used to optionally define a tag for each segment. |
---|
1676 | \end{methoddesc} |
---|
1677 | |
---|
1678 | \begin{methoddesc}{\emph{<mesh>}.add_region}{x,y, geo_reference=None, tag=None} |
---|
1679 | Module: \module{pmesh.mesh} |
---|
1680 | |
---|
1681 | This method adds a region to a mesh outline. |
---|
1682 | |
---|
1683 | \code{x} and \code{y} define a point on the already-defined region that is to |
---|
1684 | be added to the mesh. |
---|
1685 | |
---|
1686 | If \code{geo_reference} is not supplied the points data is assumed to be absolute. |
---|
1687 | |
---|
1688 | \code{tag} -- ?? |
---|
1689 | |
---|
1690 | A region instance is returned. This can be used to set the resolution of the added region. |
---|
1691 | \end{methoddesc} |
---|
1692 | |
---|
1693 | \begin{methoddesc}{\emph{<mesh>}.add_region_from_polygon}{polygon, |
---|
1694 | segment_tags=None, |
---|
1695 | max_triangle_area=None, |
---|
1696 | geo_reference=None, |
---|
1697 | region_tag=None} |
---|
1698 | Module: \module{pmesh.mesh} |
---|
1699 | |
---|
1700 | This method adds a region to a |
---|
1701 | \class{Mesh} instance. Regions are commonly used to describe an area |
---|
1702 | with an increased density of triangles by setting \code{max_triangle_area}. |
---|
1703 | |
---|
1704 | \code{polygon} describes the region boundary to add to the \code{<mesh>}. |
---|
1705 | |
---|
1706 | \code{segment_tags} specifies a list of segment tags, one for each edge of the |
---|
1707 | bounding polygon. |
---|
1708 | |
---|
1709 | If \code{geo_reference} is not supplied the points data is assumed to be absolute. |
---|
1710 | |
---|
1711 | \code{region_tag} sets the region tag. |
---|
1712 | \end{methoddesc} |
---|
1713 | |
---|
1714 | \begin{methoddesc}{\emph{<mesh>}.add_vertices}{point_data} |
---|
1715 | Module: \module{pmesh.mesh} |
---|
1716 | |
---|
1717 | Add user vertices to a mesh. |
---|
1718 | |
---|
1719 | \code{point_data} is the list of point data, and can be a list of (x,y) values, |
---|
1720 | a numeric array or a geospatial_data instance. |
---|
1721 | \end{methoddesc} |
---|
1722 | |
---|
1723 | \begin{methoddesc}{\emph{<mesh>}.auto_segment}{alpha=None, |
---|
1724 | raw_boundary=True, |
---|
1725 | remove_holes=False, |
---|
1726 | smooth_indents=False, |
---|
1727 | expand_pinch=False} |
---|
1728 | Module: \module{pmesh.mesh} |
---|
1729 | |
---|
1730 | Add segments between some of the user vertices to give the vertices an |
---|
1731 | outline. The outline is an alpha shape. This method is |
---|
1732 | useful since a set of user vertices need to be outlined by segments |
---|
1733 | before generate_mesh is called. |
---|
1734 | |
---|
1735 | \code{alpha} determines the $smoothness$ of the alpha shape. |
---|
1736 | |
---|
1737 | \code{raw_boundary}, if \code{True} instructs the function to return the raw |
---|
1738 | boundary, i.e.\ the regular edges of the alpha shape. |
---|
1739 | |
---|
1740 | \code{remove_holes}, if \code{True} enables a filter to remove small holes |
---|
1741 | (small is defined by boundary_points_fraction). |
---|
1742 | |
---|
1743 | \code{smooth_indents}, if \code{True} removes sharp triangular indents |
---|
1744 | in the boundary. |
---|
1745 | |
---|
1746 | \code{expand_pinch}, if \code{True} tests for pinch-off and corrects |
---|
1747 | (i.e.\ a boundary vertex with more than two edges). |
---|
1748 | \end{methoddesc} |
---|
1749 | |
---|
1750 | \begin{methoddesc}{\emph{<mesh>}.export_mesh_file}{ofile} |
---|
1751 | Module: \module{pmesh.mesh} |
---|
1752 | |
---|
1753 | This method is used to save a mesh to a file. |
---|
1754 | |
---|
1755 | \code{ofile} is the name of the mesh file to be written, including the extension. |
---|
1756 | Use the extension \code{.msh} for the file to be in NetCDF format and |
---|
1757 | \code{.tsh} for the file to be ASCII format. |
---|
1758 | \end{methoddesc} |
---|
1759 | |
---|
1760 | \begin{methoddesc}{\emph{<mesh>}.generate_mesh}{maximum_triangle_area="", |
---|
1761 | minimum_triangle_angle=28.0, |
---|
1762 | verbose=True} |
---|
1763 | Module: \module{pmesh.mesh} |
---|
1764 | |
---|
1765 | This method is used to generate the triangular mesh. |
---|
1766 | |
---|
1767 | \code{maximum_triangle_area} sets the maximum area of any triangle in the mesh. |
---|
1768 | |
---|
1769 | \code{minimum_triangle_angle} sets the minimum area of any triangle in the mesh. |
---|
1770 | |
---|
1771 | These two parameters can be used to control the triangle density. |
---|
1772 | \end{methoddesc} |
---|
1773 | |
---|
1774 | \begin{methoddesc}{\emph{<mesh>}.import_ungenerate_file}{ofile, |
---|
1775 | tag=None, |
---|
1776 | region_tag=None} |
---|
1777 | Module: \module{pmesh.mesh} |
---|
1778 | |
---|
1779 | This method is used to import a polygon file in the ungenerate format, |
---|
1780 | which is used by arcGIS. The polygons from the file are converted to |
---|
1781 | vertices and segments. |
---|
1782 | |
---|
1783 | \code{ofile} is the name of the polygon file. |
---|
1784 | |
---|
1785 | \code{tag} is the tag given to all the polygon's segments. |
---|
1786 | If \code{tag} is not supplied then the segment will not effect the water |
---|
1787 | flow, it will only effect the mesh generation. |
---|
1788 | |
---|
1789 | \code{region_tag} is the tag given to all the polygon's segments. If |
---|
1790 | it is a string the tag will be assigned to all regions. If it |
---|
1791 | is a list the first value in the list will be applied to the first |
---|
1792 | polygon etc. |
---|
1793 | |
---|
1794 | This function can be used to import building footprints. |
---|
1795 | \end{methoddesc} |
---|
1796 | |
---|
1797 | |
---|
1798 | \section{Initialising the Domain}\index{Initialising the Domain} |
---|
1799 | \label{sec:initialising the domain} |
---|
1800 | |
---|
1801 | \begin{classdesc}{Domain}{source=None, |
---|
1802 | triangles=None, |
---|
1803 | boundary=None, |
---|
1804 | conserved_quantities=None, |
---|
1805 | other_quantities=None, |
---|
1806 | tagged_elements=None, |
---|
1807 | geo_reference=None, |
---|
1808 | use_inscribed_circle=False, |
---|
1809 | mesh_filename=None, |
---|
1810 | use_cache=False, |
---|
1811 | verbose=False, |
---|
1812 | full_send_dict=None, |
---|
1813 | ghost_recv_dict=None, |
---|
1814 | processor=0, |
---|
1815 | numproc=1, |
---|
1816 | number_of_full_nodes=None, |
---|
1817 | number_of_full_triangles=None} |
---|
1818 | Module: \refmodule{abstract_2d_finite_volumes.domain} |
---|
1819 | |
---|
1820 | This class is used to create an instance of a structure used to |
---|
1821 | store and manipulate data associated with a mesh. The mesh is |
---|
1822 | specified either by assigning the name of a mesh file to |
---|
1823 | \code{source} or by specifying the points, triangle and boundary of the |
---|
1824 | mesh. |
---|
1825 | \end{classdesc} |
---|
1826 | |
---|
1827 | \subsection{Key Methods of Domain} |
---|
1828 | |
---|
1829 | \begin{methoddesc}{\emph{<domain>}.set_name}{name} |
---|
1830 | Module: \refmodule{abstract_2d_finite_volumes.domain}, |
---|
1831 | page \pageref{mod:domain} |
---|
1832 | |
---|
1833 | \code{name} is used to name the domain. The \code{name} is also used to identify the output SWW file. |
---|
1834 | If no name is assigned to a domain, the assumed name is \code{'domain'}. |
---|
1835 | \end{methoddesc} |
---|
1836 | |
---|
1837 | \begin{methoddesc}{\emph{<domain>}.get_name}{} |
---|
1838 | Module: \module{abstract_2d_finite_volumes.domain} |
---|
1839 | |
---|
1840 | Returns the name assigned to the domain by \code{set_name()}. If no name has been |
---|
1841 | assigned, returns \code{'domain'}. |
---|
1842 | \end{methoddesc} |
---|
1843 | |
---|
1844 | \begin{methoddesc}{\emph{<domain>}.set_datadir}{path} |
---|
1845 | Module: \module{abstract_2d_finite_volumes.domain} |
---|
1846 | |
---|
1847 | \code{path} specifies the path to the directory used to store SWW files. |
---|
1848 | |
---|
1849 | Before this method is used to set the SWW directory path, the assumed directory |
---|
1850 | path is \code{default_datadir} specified in \code{config.py}. |
---|
1851 | |
---|
1852 | Since different operating systems use different formats for specifying pathnames |
---|
1853 | it is necessary to specify path separators using the Python code \code{os.sep} rather than |
---|
1854 | the operating-specific ones such as '$\slash$' or '$\backslash$'. |
---|
1855 | For this to work you will need to include the statement \code{import os} |
---|
1856 | in your code, before the first use of \code{set_datadir()}. |
---|
1857 | |
---|
1858 | For example, to set the data directory to a subdirectory |
---|
1859 | \code{data} of the directory \code{project}, you could use |
---|
1860 | the statements: |
---|
1861 | |
---|
1862 | \begin{verbatim} |
---|
1863 | import os |
---|
1864 | domain.set_datadir{'project' + os.sep + 'data'} |
---|
1865 | \end{verbatim} |
---|
1866 | \end{methoddesc} |
---|
1867 | |
---|
1868 | \begin{methoddesc}{\emph{<domain>}.get_datadir}{} |
---|
1869 | Module: \module{abstract_2d_finite_volumes.domain} |
---|
1870 | |
---|
1871 | Returns the path to the directory where SWW files will be stored. |
---|
1872 | |
---|
1873 | If the path has not previously been set with \code{set_datadir()} this method |
---|
1874 | will return the value \code{default_datadir} specified in \code{config.py}. |
---|
1875 | \end{methoddesc} |
---|
1876 | |
---|
1877 | \begin{methoddesc}{\emph{<domain>}.set_minimum_allowed_height}{minimum_allowed_height} |
---|
1878 | Module: \module{shallow_water.shallow_water_domain} |
---|
1879 | |
---|
1880 | Set the minimum depth (in metres) that will be recognised in |
---|
1881 | the numerical scheme (including limiters and flux computations) |
---|
1882 | |
---|
1883 | \code{minimum_allowed_height} is the new minimum allowed height value. |
---|
1884 | |
---|
1885 | Default value is $10^{-3}$ metre, but by setting this to a greater value, |
---|
1886 | e.g.\ for large scale simulations, the computation time can be |
---|
1887 | significantly reduced. |
---|
1888 | \end{methoddesc} |
---|
1889 | |
---|
1890 | \begin{methoddesc}{\emph{<domain>}.set_minimum_storable_height}{minimum_storable_height} |
---|
1891 | Module: \module{shallow_water.shallow_water_domain} |
---|
1892 | |
---|
1893 | Sets the minimum depth that will be recognised when writing |
---|
1894 | to an SWW file. This is useful for removing thin water layers |
---|
1895 | that seems to be caused by friction creep. |
---|
1896 | |
---|
1897 | \code{minimum_storable_height} is the new minimum storable height value. |
---|
1898 | \end{methoddesc} |
---|
1899 | |
---|
1900 | \begin{methoddesc}{\emph{<domain>}.set_maximum_allowed_speed}{maximum_allowed_speed} |
---|
1901 | Module: \module{shallow_water.shallow_water_domain} |
---|
1902 | |
---|
1903 | Set the maximum particle speed that is allowed in water |
---|
1904 | shallower than \code{minimum_allowed_height}. This is useful for |
---|
1905 | controlling speeds in very thin layers of water and at the same time |
---|
1906 | allow some movement avoiding pooling of water. |
---|
1907 | |
---|
1908 | \code{maximum_allowed_speed} sets the maximum allowed speed value. |
---|
1909 | \end{methoddesc} |
---|
1910 | |
---|
1911 | \begin{methoddesc}{\emph{<domain>}.set_time}{time=0.0} |
---|
1912 | Module: \module{abstract_2d_finite_volumes.domain} |
---|
1913 | |
---|
1914 | \code{time} sets the initial time, in seconds, for the simulation. The |
---|
1915 | default is 0.0. |
---|
1916 | \end{methoddesc} |
---|
1917 | |
---|
1918 | \begin{methoddesc}{\emph{<domain>}.set_default_order}{n} |
---|
1919 | Module: \module{abstract_2d_finite_volumes.domain} |
---|
1920 | |
---|
1921 | Sets the default (spatial) order to the value specified by |
---|
1922 | \code{n}, which must be either 1 or 2. (Assigning any other value |
---|
1923 | to \code{n} will cause an error.) |
---|
1924 | \end{methoddesc} |
---|
1925 | |
---|
1926 | \begin{methoddesc}{\emph{<domain>}.set_store_vertices_uniquely}{flag, reduction=None} |
---|
1927 | Module: \module{shallow_water.shallow_water_domain} |
---|
1928 | |
---|
1929 | Decide whether vertex values should be stored uniquely as |
---|
1930 | computed in the model or whether they should be reduced to one |
---|
1931 | value per vertex using averaging. |
---|
1932 | |
---|
1933 | \code{flag} may be \code{True} (meaning allow surface to be discontinuous) or \code{False} (meaning smooth vertex values). |
---|
1934 | |
---|
1935 | \code{reduction} defines the smoothing operation if \code{flag} is \code{False}. If not |
---|
1936 | supplied, \code{reduction} is assumed to be \code{mean}. |
---|
1937 | |
---|
1938 | Triangles stored in the SWW file can be discontinuous reflecting |
---|
1939 | the internal representation of the finite-volume scheme |
---|
1940 | (this is a feature allowing for arbitrary steepness of the water surface gradient |
---|
1941 | as well as the momentum gradients). |
---|
1942 | However, for visual purposes and also for use with \code{Field_boundary} |
---|
1943 | (and \code{File_boundary}), it is often desirable to store triangles |
---|
1944 | with values at each vertex point as the average of the potentially |
---|
1945 | discontinuous numbers found at vertices of different triangles sharing the |
---|
1946 | same vertex location. |
---|
1947 | |
---|
1948 | Storing one way or the other is controlled in \anuga through the method |
---|
1949 | \code{<domain>.store_vertices_uniquely()}. Options are: |
---|
1950 | \begin{itemize} |
---|
1951 | \item \code{<domain>.store_vertices_uniquely(True)}: Allow discontinuities in the SWW file |
---|
1952 | \item \code{<domain>.store_vertices_uniquely(False)}: (Default). |
---|
1953 | Average values |
---|
1954 | to ensure continuity in SWW file. The latter also makes for smaller |
---|
1955 | SWW files. |
---|
1956 | \end{itemize} |
---|
1957 | |
---|
1958 | Note that when model data in the SWW file are averaged (i.e.\ not stored uniquely), |
---|
1959 | then there will most likely be a small discrepancy between values extracted from the SWW |
---|
1960 | file and the same data stored in the model domain. This must be borne in mind when comparing |
---|
1961 | data from the SWW files with that of the model internally. |
---|
1962 | \end{methoddesc} |
---|
1963 | |
---|
1964 | |
---|
1965 | \begin{methoddesc}{\emph{<domain>}.set_quantities_to_be_stored}{quantity_dictionary} |
---|
1966 | Module: \module{shallow_water.shallow_water_domain} |
---|
1967 | |
---|
1968 | Selects quantities that is to be stored in the sww files. |
---|
1969 | The argument can be None, in which case nothing is stored. |
---|
1970 | |
---|
1971 | Otherwise, the argument must be a dictionary where the keys are names of quantities |
---|
1972 | already defined within ANUGA and the values are either 1 or 2. If the value is 1, the quantity |
---|
1973 | will be stored once at the beginning of the simulation, if the value is 2 it will be stored |
---|
1974 | at each timestep. The ANUGA default is equivalent to the call |
---|
1975 | \begin{verbatim} |
---|
1976 | domain.set_quantities_to_be_stored({'elevation': 1, |
---|
1977 | 'stage': 2, |
---|
1978 | 'xmomentum': 2, |
---|
1979 | 'ymomentum': 2}) |
---|
1980 | \end{verbatim} |
---|
1981 | \end{methoddesc} |
---|
1982 | |
---|
1983 | |
---|
1984 | % Structural methods |
---|
1985 | \begin{methoddesc}{\emph{<domain>}.get_nodes}{absolute=False} |
---|
1986 | Module: \module{abstract_2d_finite_volumes.domain} |
---|
1987 | |
---|
1988 | Return x,y coordinates of all nodes in the domain mesh. The nodes are ordered |
---|
1989 | in an \code{Nx2} array where N is the number of nodes. This is the same format |
---|
1990 | they were provided in the constructor i.e.\ without any duplication. |
---|
1991 | |
---|
1992 | \code{absolute} is a boolean which determines whether coordinates |
---|
1993 | are to be made absolute by taking georeference into account. |
---|
1994 | Default is \code{False} as many parts of \anuga expect relative coordinates. |
---|
1995 | \end{methoddesc} |
---|
1996 | |
---|
1997 | \begin{methoddesc}{\emph{<domain>}.get_vertex_coordinates}{absolute=False} |
---|
1998 | Module: \module{abstract_2d_finite_volumes.domain} |
---|
1999 | |
---|
2000 | \label{pg:get vertex coordinates} |
---|
2001 | Return vertex coordinates for all triangles as a \code{3*Mx2} array |
---|
2002 | where the jth vertex of the ith triangle is located in row 3*i+j and |
---|
2003 | M is the number of triangles in the mesh. |
---|
2004 | |
---|
2005 | \code{absolute} is a boolean which determines whether coordinates |
---|
2006 | are to be made absolute by taking georeference into account. |
---|
2007 | Default is \code{False} as many parts of \anuga expect relative coordinates. |
---|
2008 | \end{methoddesc} |
---|
2009 | |
---|
2010 | \begin{methoddesc}{\emph{<domain>}.get_centroid_coordinates}{absolute=False} |
---|
2011 | Module: \module{abstract_2d_finite_volumes.domain} |
---|
2012 | |
---|
2013 | Return centroid coordinates for all triangles as an \code{Mx2} array. |
---|
2014 | |
---|
2015 | \code{absolute} is a boolean which determines whether coordinates |
---|
2016 | are to be made absolute by taking georeference into account. |
---|
2017 | Default is \code{False} as many parts of \anuga expect relative coordinates. |
---|
2018 | \end{methoddesc} |
---|
2019 | |
---|
2020 | \begin{methoddesc}{\emph{<domain>}.get_triangles}{indices=None} |
---|
2021 | Module: \module{abstract_2d_finite_volumes.domain} |
---|
2022 | |
---|
2023 | Return an \code{Mx3} integer array where M is the number of triangles. |
---|
2024 | Each row corresponds to one triangle and the three entries are |
---|
2025 | indices into the mesh nodes which can be obtained using the method |
---|
2026 | \code{get_nodes()}. |
---|
2027 | |
---|
2028 | \code{indices}, if specified, is the set of triangle \code{id}s of interest. |
---|
2029 | \end{methoddesc} |
---|
2030 | |
---|
2031 | \begin{methoddesc}{\emph{<domain>}.get_disconnected_triangles}{} |
---|
2032 | Module: \module{abstract_2d_finite_volumes.domain} |
---|
2033 | |
---|
2034 | Get the domain mesh based on nodes obtained from \code{get_vertex_coordinates()}. |
---|
2035 | |
---|
2036 | Returns an \code{Mx3} array of integers where each row corresponds to |
---|
2037 | a triangle. A triangle is a triplet of indices into |
---|
2038 | point coordinates obtained from \code{get_vertex_coordinates()} and each |
---|
2039 | index appears only once. |
---|
2040 | |
---|
2041 | This provides a mesh where no triangles share nodes |
---|
2042 | (hence the name disconnected triangles) and different |
---|
2043 | nodes may have the same coordinates. |
---|
2044 | |
---|
2045 | This version of the mesh is useful for storing meshes with |
---|
2046 | discontinuities at each node and is e.g.\ used for storing |
---|
2047 | data in SWW files. |
---|
2048 | |
---|
2049 | The triangles created will have the format: |
---|
2050 | |
---|
2051 | \begin{verbatim} |
---|
2052 | [[0,1,2], |
---|
2053 | [3,4,5], |
---|
2054 | [6,7,8], |
---|
2055 | ... |
---|
2056 | [3*M-3 3*M-2 3*M-1]] |
---|
2057 | \end{verbatim} |
---|
2058 | \end{methoddesc} |
---|
2059 | |
---|
2060 | |
---|
2061 | \section{Initial Conditions}\index{Initial Conditions} |
---|
2062 | \label{sec:initial conditions} |
---|
2063 | In standard usage of partial differential equations, initial conditions |
---|
2064 | refers to the values associated to the system variables (the conserved |
---|
2065 | quantities here) for \code{time = 0}. In setting up a scenario script |
---|
2066 | as described in Sections \ref{sec:simpleexample} and \ref{sec:realdataexample}, |
---|
2067 | \code{set_quantity} is used to define the initial conditions of variables |
---|
2068 | other than the conserved quantities, such as friction. Here, we use the terminology |
---|
2069 | of initial conditions to refer to initial values for variables which need |
---|
2070 | prescription to solve the shallow water wave equation. Further, it must be noted |
---|
2071 | that \code{set_quantity()} does not necessarily have to be used in the initial |
---|
2072 | condition setting; it can be used at any time throughout the simulation. |
---|
2073 | |
---|
2074 | \begin{methoddesc}{\emph{<domain>}.set_quantity}{numeric=None, |
---|
2075 | quantity=None, |
---|
2076 | function=None, |
---|
2077 | geospatial_data=None, |
---|
2078 | filename=None, |
---|
2079 | attribute_name=None, |
---|
2080 | alpha=None, |
---|
2081 | location='vertices', |
---|
2082 | polygon=None, |
---|
2083 | indices=None, |
---|
2084 | smooth=False, |
---|
2085 | verbose=False, |
---|
2086 | use_cache=False} |
---|
2087 | Module: \module{abstract_2d_finite_volumes.domain} \\ |
---|
2088 | (This method passes off to \module{abstract_2d_finite_volumes.quantity.set_values()}) |
---|
2089 | |
---|
2090 | This function is used to assign values to individual quantities for a |
---|
2091 | domain. It is very flexible and can be used with many data types: a |
---|
2092 | statement of the form \code{\emph{<domain>}.set_quantity(name, x)} can be used |
---|
2093 | to define a quantity having the name \code{name}, where the other |
---|
2094 | argument \code{x} can be any of the following: |
---|
2095 | |
---|
2096 | \begin{itemize} |
---|
2097 | \item a number, in which case all vertices in the mesh gets that for |
---|
2098 | the quantity in question |
---|
2099 | \item a list of numbers or a numeric array ordered the same way as the mesh vertices |
---|
2100 | \item a function (e.g.\ see the samples introduced in Chapter 2) |
---|
2101 | \item an expression composed of other quantities and numbers, arrays, lists (for |
---|
2102 | example, a linear combination of quantities, such as |
---|
2103 | \code{\emph{<domain>}.set_quantity('stage','elevation'+x))} |
---|
2104 | \item the name of a file from which the data can be read. In this case, the optional |
---|
2105 | argument \code{attribute_name} will select which attribute to use from the file. If left out, |
---|
2106 | \code{set_quantity()} will pick one. This is useful in cases where there is only one attribute |
---|
2107 | \item a geospatial dataset (See Section \ref{sec:geospatial}). |
---|
2108 | Optional argument \code{attribute_name} applies here as with files |
---|
2109 | \end{itemize} |
---|
2110 | |
---|
2111 | Exactly one of the arguments \code{numeric}, \code{quantity}, \code{function}, |
---|
2112 | \code{geospatial_data} and \code{filename} must be present. |
---|
2113 | |
---|
2114 | \code{set_quantity()} will look at the type of the \code{numeric} and |
---|
2115 | determine what action to take. |
---|
2116 | |
---|
2117 | Values can also be set using the appropriate keyword arguments. |
---|
2118 | If \code{x} is a function, for example, \code{domain.set_quantity(name, x)}, \code{domain.set_quantity(name, numeric=x)}, |
---|
2119 | and \code{domain.set_quantity(name, function=x)} are all equivalent. |
---|
2120 | |
---|
2121 | Other optional arguments are: |
---|
2122 | \begin{itemize} |
---|
2123 | \item \code{indices} which is a list of ids of triangles to which \code{set_quantity()} |
---|
2124 | should apply its assignment of values. |
---|
2125 | \item \code{location} determines which part of the triangles to assign to. |
---|
2126 | Options are 'vertices' (the default), 'edges', 'unique vertices', and 'centroids'. |
---|
2127 | If 'vertices' is used, edge and centroid values are automatically computed as the |
---|
2128 | appropriate averages. This option ensures continuity of the surface. |
---|
2129 | If, on the other hand, 'centroids' is used, vertex and edge values will be set to the |
---|
2130 | same value effectively creating a piecewise constant surface with possible |
---|
2131 | discontinuities at the edges. |
---|
2132 | \end{itemize} |
---|
2133 | |
---|
2134 | \anuga provides a number of predefined initial conditions to be used |
---|
2135 | with \code{set_quantity()}. See for example callable object \code{slump_tsunami} below. |
---|
2136 | \end{methoddesc} |
---|
2137 | |
---|
2138 | \begin{methoddesc}{\emph{<domain>}.add_quantity}{numeric=None, |
---|
2139 | quantity=None, |
---|
2140 | function=None, |
---|
2141 | geospatial_data=None, |
---|
2142 | filename=None, |
---|
2143 | attribute_name=None, |
---|
2144 | alpha=None, |
---|
2145 | location='vertices', |
---|
2146 | polygon=None, |
---|
2147 | indices=None, |
---|
2148 | smooth=False, |
---|
2149 | verbose=False, |
---|
2150 | use_cache=False} |
---|
2151 | Module: \module{abstract_2d_finite_volumes.domain} \\ |
---|
2152 | (passes off to \module{abstract_2d_finite_volumes.domain.set_quantity()}) |
---|
2153 | |
---|
2154 | \label{add quantity} |
---|
2155 | This function is used to \emph{add} values to individual quantities for a |
---|
2156 | domain. It has the same syntax as \code{\emph{<domain>}.set_quantity(name, x)}. |
---|
2157 | |
---|
2158 | A typical use of this function is to add structures to an existing elevation model: |
---|
2159 | |
---|
2160 | \begin{verbatim} |
---|
2161 | # Create digital elevation model from points file |
---|
2162 | domain.set_quantity('elevation', filename='elevation_file.pts, verbose=True) |
---|
2163 | |
---|
2164 | # Add buildings from file |
---|
2165 | building_polygons, building_heights = csv2building_polygons(building_file) |
---|
2166 | |
---|
2167 | B = [] |
---|
2168 | for key in building_polygons: |
---|
2169 | poly = building_polygons[key] |
---|
2170 | elev = building_heights[key] |
---|
2171 | B.append((poly, elev)) |
---|
2172 | |
---|
2173 | domain.add_quantity('elevation', Polygon_function(B, default=0.0)) |
---|
2174 | \end{verbatim} |
---|
2175 | \end{methoddesc} |
---|
2176 | |
---|
2177 | \begin{methoddesc}{\emph{<domain>}.set_region}{tag, quantity, X, location='vertices'} |
---|
2178 | Module: \module{abstract_2d_finite_volumes.domain} \\ |
---|
2179 | (see also \module{abstract_2d_finite_volumes.quantity.set_values}) |
---|
2180 | |
---|
2181 | This function is used to assign values to individual quantities given |
---|
2182 | a regional tag. It is similar to \code{set_quantity()}. |
---|
2183 | |
---|
2184 | For example, if in the mesh-generator a regional tag of 'ditch' was |
---|
2185 | used, \code{set_region()} can be used to set elevation of this region to |
---|
2186 | -10m. \code{X} is the constant or function to be applied to the \code{quantity}, |
---|
2187 | over the tagged region. \code{location} describes how the values will be |
---|
2188 | applied. Options are 'vertices' (the default), 'edges', 'unique |
---|
2189 | vertices', and 'centroids'. |
---|
2190 | |
---|
2191 | This method can also be called with a list of region objects. This is |
---|
2192 | useful for adding quantities in regions, and having one quantity |
---|
2193 | value based on another quantity. See \module{abstract_2d_finite_volumes.region} for |
---|
2194 | more details. |
---|
2195 | \end{methoddesc} |
---|
2196 | |
---|
2197 | \begin{funcdesc}{slump_tsunami}{length, depth, slope, width=None, thickness=None, |
---|
2198 | radius=None, dphi=0.48, x0=0.0, y0=0.0, alpha=0.0, |
---|
2199 | gravity=9.8, gamma=1.85, |
---|
2200 | massco=1, dragco=1, frictionco=0, |
---|
2201 | dx=None, kappa=3.0, kappad=1.0, zsmall=0.01, scale=None, |
---|
2202 | domain=None, |
---|
2203 | verbose=False} |
---|
2204 | Module: \module{shallow\_water.smf} |
---|
2205 | |
---|
2206 | This function returns a callable object representing an initial water |
---|
2207 | displacement generated by a submarine sediment failure. These failures can take the form of |
---|
2208 | a submarine slump or slide. In the case of a slide, use \code{slide_tsunami} instead. |
---|
2209 | |
---|
2210 | \code{length} is the length of the slide or slump. |
---|
2211 | |
---|
2212 | \code{depth} is the water depth to the centre of the sediment mass. |
---|
2213 | |
---|
2214 | \code{slope} is the bathymetric slope. |
---|
2215 | |
---|
2216 | Other slump or slide parameters can be included if they are known. |
---|
2217 | \end{funcdesc} |
---|
2218 | |
---|
2219 | \begin{funcdesc}{\emph{<callable_object>} = file_function}{filename, |
---|
2220 | domain=None, |
---|
2221 | quantities=None, |
---|
2222 | interpolation_points=None, |
---|
2223 | time_thinning=1, |
---|
2224 | time_limit=None, |
---|
2225 | verbose=False, |
---|
2226 | use_cache=False, |
---|
2227 | boundary_polygon=None} |
---|
2228 | Module: \module{abstract_2d_finite_volumes.util} |
---|
2229 | |
---|
2230 | Reads the time history of spatial data for specified interpolation points from |
---|
2231 | a NetCDF file and returns a callable object. Values returned from the \code{\emph{<callable_object>}} |
---|
2232 | are interpolated values based on the input file using the underlying \code{interpolation_function}. |
---|
2233 | |
---|
2234 | \code{filename} is the name of the input file. |
---|
2235 | This would be either an SWW, TMS or STS file. |
---|
2236 | |
---|
2237 | \code{quantities} is either the name of a single quantity to be |
---|
2238 | interpolated or a list of such quantity names. In the second case, the resulting |
---|
2239 | function will return a tuple of values -- one for each quantity. |
---|
2240 | If the NetCDF file uses names other than 'stage', 'xmomentum', and 'ymomentum' |
---|
2241 | the name(s) appearing in the file must be explicitly stated using the |
---|
2242 | quantities keyword. This is for example be the case if a 'tms' file is used |
---|
2243 | to specify time dependent precipitation. In this case the keyword might be called 'rainfall' both in the call to file\_function and in the 'tms' file. |
---|
2244 | |
---|
2245 | \code{interpolation_points} is a list of absolute coordinates or a |
---|
2246 | geospatial object for points at which values are sought. |
---|
2247 | |
---|
2248 | \code{boundary_polygon} is a list of coordinates specifying the vertices of the boundary. |
---|
2249 | This must be the same polygon as used when calling \code{create_mesh_from_regions()}. |
---|
2250 | This argument can only be used when reading boundary data from an STS format file. |
---|
2251 | |
---|
2252 | The model time stored within the file function can be accessed using |
---|
2253 | the method \code{\emph{<callable_object>}.get_time()} |
---|
2254 | |
---|
2255 | The underlying algorithm used is as follows:\\ |
---|
2256 | Given a time series (i.e.\ a series of values associated with |
---|
2257 | different times), whose values are either just numbers, a set of |
---|
2258 | numbers defined at the vertices of a triangular mesh (such as those |
---|
2259 | stored in SWW files) or a set of |
---|
2260 | numbers defined at a number of points on the boundary (such as those |
---|
2261 | stored in STS files), \code{Interpolation_function()} is used to |
---|
2262 | create a callable object that interpolates a value for an arbitrary |
---|
2263 | time \code{t} within the model limits and possibly a point \code{(x, y)} |
---|
2264 | within a mesh region. |
---|
2265 | |
---|
2266 | The actual time series at which data is available is specified by |
---|
2267 | means of an array \code{time} of monotonically increasing times. The |
---|
2268 | quantities containing the values to be interpolated are specified in |
---|
2269 | an array -- or dictionary of arrays (used in conjunction with the |
---|
2270 | optional argument \code{quantity_names}) -- called |
---|
2271 | \code{quantities}. The optional arguments \code{vertex_coordinates} |
---|
2272 | and \code{triangles} represent the spatial mesh associated with the |
---|
2273 | quantity arrays. If omitted the function must be created using an STS file |
---|
2274 | or a TMS file. |
---|
2275 | |
---|
2276 | Since, in practice, values need to be computed at specified points, |
---|
2277 | the syntax allows the user to specify, once and for all, a list |
---|
2278 | \code{interpolation_points} of points at which values are required. |
---|
2279 | In this case, the function may be called using the form \code{\emph{<callable_object>}(t, id)}, |
---|
2280 | where \code{id} is an index for the list \code{interpolation_points}. |
---|
2281 | \end{funcdesc} |
---|
2282 | |
---|
2283 | \begin{classdesc}{\emph{<callable_object>} = Interpolation_function}{time, |
---|
2284 | quantities, |
---|
2285 | quantity_names=None, |
---|
2286 | vertex_coordinates=None, |
---|
2287 | triangles=None, |
---|
2288 | interpolation_points=None, |
---|
2289 | time_thinning=1, |
---|
2290 | verbose=False, |
---|
2291 | gauge_neighbour_id=None} |
---|
2292 | Module: \module{fit_interpolate.interpolate} |
---|
2293 | |
---|
2294 | Given a time series (i.e.\ a series of values associated with |
---|
2295 | different times) whose values are either just numbers or a set of |
---|
2296 | numbers defined at the vertices of a triangular mesh (such as those |
---|
2297 | stored in SWW files), \code{Interpolation_function} is used to |
---|
2298 | create a callable object that interpolates a value for an arbitrary |
---|
2299 | time \code{t} within the model limits and possibly a point \code{(x, y)} |
---|
2300 | within a mesh region. |
---|
2301 | |
---|
2302 | The actual time series at which data is available is specified by |
---|
2303 | means of an array \code{time} of monotonically increasing times. The |
---|
2304 | quantities containing the values to be interpolated are specified in |
---|
2305 | an array -- or dictionary of arrays (used in conjunction with the |
---|
2306 | optional argument \code{quantity\_names}) -- called |
---|
2307 | \code{quantities}. The optional arguments \code{vertex_coordinates} |
---|
2308 | and \code{triangles} represent the spatial mesh associated with the |
---|
2309 | quantity arrays. If omitted the function created by |
---|
2310 | \code{Interpolation_function} will be a function of \code{t} only. |
---|
2311 | |
---|
2312 | Since, in practice, values need to be computed at specified points, |
---|
2313 | the syntax allows the user to specify, once and for all, a list |
---|
2314 | \code{interpolation_points} of points at which values are required. |
---|
2315 | In this case, the function may be called using the form \code{f(t, id)}, |
---|
2316 | where \code{id} is an index for the list \code{interpolation_points}. |
---|
2317 | \end{classdesc} |
---|
2318 | |
---|
2319 | |
---|
2320 | \section{Boundary Conditions}\index{boundary conditions} |
---|
2321 | \label{sec:boundary conditions} |
---|
2322 | |
---|
2323 | \anuga provides a large number of predefined boundary conditions, |
---|
2324 | represented by objects such as \code{Reflective_boundary(domain)} and |
---|
2325 | \code{Dirichlet_boundary([0.2, 0.0, 0.0])}, described in the examples |
---|
2326 | in Chapter 2. Alternatively, you may prefer to ''roll your own'', |
---|
2327 | following the method explained in Section \ref{sec:roll your own}. |
---|
2328 | |
---|
2329 | These boundary objects may be used with the function \code{set_boundary} described below |
---|
2330 | to assign boundary conditions according to the tags used to label boundary segments. |
---|
2331 | |
---|
2332 | \begin{methoddesc}{\emph{<domain>}.set_boundary}{boundary_map} |
---|
2333 | Module: \module{abstract_2d_finite_volumes.domain} |
---|
2334 | |
---|
2335 | This function allows you to assign a boundary object (corresponding to a |
---|
2336 | pre-defined or user-specified boundary condition) to every boundary segment that |
---|
2337 | has been assigned a particular tag. |
---|
2338 | |
---|
2339 | \code{boundary_map} is a dictionary of boundary objects keyed by symbolic tags. |
---|
2340 | \end{methoddesc} |
---|
2341 | |
---|
2342 | \begin{methoddesc} {\emph{<domain>}.get_boundary_tags}{} |
---|
2343 | Module: \module{abstract\_2d\_finite\_volumes.domain} |
---|
2344 | |
---|
2345 | Returns a list of the available boundary tags. |
---|
2346 | \end{methoddesc} |
---|
2347 | |
---|
2348 | \subsection{Predefined boundary conditions} |
---|
2349 | |
---|
2350 | \begin{classdesc}{Reflective_boundary}{domain=None} |
---|
2351 | Module: \module{shallow_water} |
---|
2352 | |
---|
2353 | Reflective boundary returns same conserved quantities as those present in |
---|
2354 | the neighbouring volume but reflected. |
---|
2355 | |
---|
2356 | This class is specific to the shallow water equation as it works with the |
---|
2357 | momentum quantities assumed to be the second and third conserved quantities. |
---|
2358 | \end{classdesc} |
---|
2359 | |
---|
2360 | \begin{classdesc}{Transmissive_boundary}{domain=None} |
---|
2361 | \label{pg: transmissive boundary} |
---|
2362 | Module: \module{abstract_2d_finite_volumes.generic_boundary_conditions} |
---|
2363 | |
---|
2364 | A transmissive boundary returns the same conserved quantities as |
---|
2365 | those present in the neighbouring volume. |
---|
2366 | |
---|
2367 | The underlying domain must be specified when the boundary is instantiated. |
---|
2368 | \end{classdesc} |
---|
2369 | |
---|
2370 | \begin{classdesc}{Dirichlet_boundary}{conserved_quantities=None} |
---|
2371 | Module: \module{abstract_2d_finite_volumes.generic_boundary_conditions} |
---|
2372 | |
---|
2373 | A Dirichlet boundary returns constant values for each of conserved |
---|
2374 | quantities. In the example of \code{Dirichlet_boundary([0.2, 0.0, 0.0])}, |
---|
2375 | the \code{stage} value at the boundary is 0.2 and the \code{xmomentum} and |
---|
2376 | \code{ymomentum} at the boundary are set to 0.0. The list must contain |
---|
2377 | a value for each conserved quantity. |
---|
2378 | \end{classdesc} |
---|
2379 | |
---|
2380 | \begin{classdesc}{Time_boundary}{domain=None, |
---|
2381 | function=None, |
---|
2382 | default_boundary=None, |
---|
2383 | verbose=False} |
---|
2384 | Module: \module{abstract_2d_finite_volumes.generic_boundary_conditions} |
---|
2385 | |
---|
2386 | A time-dependent boundary returns values for the conserved |
---|
2387 | quantities as a function of time \code{function(t)}. The user must specify |
---|
2388 | the domain to get access to the model time. |
---|
2389 | |
---|
2390 | Optional argument \code{default_boundary} can be used to specify another boundary object |
---|
2391 | to be used in case model time exceeds the time available in the file used by \code{File_boundary}. |
---|
2392 | The \code{default_boundary} could be a simple Dirichlet condition or |
---|
2393 | even another \code{Time_boundary} typically using data pertaining to another time interval. |
---|
2394 | \end{classdesc} |
---|
2395 | |
---|
2396 | \begin{classdesc}{File_boundary}{filename, |
---|
2397 | domain, |
---|
2398 | time_thinning=1, |
---|
2399 | time_limit=None, |
---|
2400 | boundary_polygon=None, |
---|
2401 | default_boundary=None, |
---|
2402 | use_cache=False, |
---|
2403 | verbose=False} |
---|
2404 | Module: \module{abstract_2d_finite_volumes.generic_boundary_conditions} |
---|
2405 | |
---|
2406 | This method may be used if the user wishes to apply a SWW file, STS file or |
---|
2407 | a time series file (TMS) to a boundary segment or segments. |
---|
2408 | The boundary values are obtained from a file and interpolated to the |
---|
2409 | appropriate segments for each conserved quantity. |
---|
2410 | |
---|
2411 | Optional argument \code{default_boundary} can be used to specify another boundary object |
---|
2412 | to be used in case model time exceeds the time available in the file used by \code{File_boundary}. |
---|
2413 | The \code{default_boundary} could be a simple Dirichlet condition or |
---|
2414 | even another \code{File_boundary} typically using data pertaining to another time interval. |
---|
2415 | \end{classdesc} |
---|
2416 | |
---|
2417 | \begin{classdesc}{Field_boundary}{filename, |
---|
2418 | domain, |
---|
2419 | mean_stage=0.0, |
---|
2420 | time_thinning=1, |
---|
2421 | time_limit=None, |
---|
2422 | boundary_polygon=None, |
---|
2423 | default_boundary=None, |
---|
2424 | use_cache=False, |
---|
2425 | verbose=False} |
---|
2426 | Module: \module{shallow_water.shallow_water_domain} |
---|
2427 | |
---|
2428 | This method works in the same way as \code{File_boundary} except that it |
---|
2429 | allows for the value of stage to be offset by a constant specified in the |
---|
2430 | keyword argument \code{mean_stage}. |
---|
2431 | |
---|
2432 | This functionality allows for models to be run for a range of tides using |
---|
2433 | the same boundary information (from STS, SWW or TMS files). The tidal value |
---|
2434 | for each run would then be specified in the keyword argument \code{mean_stage}. |
---|
2435 | If \code{mean_stage} = 0.0, \code{Field_boundary} and \code{File_boundary} |
---|
2436 | behave identically. |
---|
2437 | |
---|
2438 | Note that if the optional argument \code{default_boundary} is specified |
---|
2439 | its stage value will be adjusted by \code{mean_stage} just like the values |
---|
2440 | obtained from the file. |
---|
2441 | |
---|
2442 | See \code{File_boundary} for further details. |
---|
2443 | \end{classdesc} |
---|
2444 | |
---|
2445 | \begin{classdesc}{Transmissive_momentum_set_stage_boundary}{domain=None, |
---|
2446 | function=None} |
---|
2447 | Module: \module{shallow_water.shallow_water_domain} |
---|
2448 | \label{pg: transmissive momentum set stage boundary} |
---|
2449 | |
---|
2450 | This boundary returns the same momentum conserved quantities as |
---|
2451 | those present in its neighbour volume but sets stage as in a \code{Time_boundary}. |
---|
2452 | The underlying domain must be specified when boundary is instantiated. |
---|
2453 | |
---|
2454 | This type of boundary is useful when stage is known at the boundary as a |
---|
2455 | function of time, but momenta (or speeds) aren't. |
---|
2456 | |
---|
2457 | This class is specific to the shallow water equation as it works with the |
---|
2458 | momentum quantities assumed to be the second and third conserved quantities. |
---|
2459 | |
---|
2460 | In some circumstances, this boundary condition may cause numerical instabilities for similar |
---|
2461 | reasons as what has been observed with the simple fully transmissive boundary condition |
---|
2462 | (see Page \pageref{pg: transmissive boundary}). |
---|
2463 | This could for example be the case if a planar wave is reflected out through this boundary. |
---|
2464 | \end{classdesc} |
---|
2465 | |
---|
2466 | \begin{classdesc}{Transmissive_stage_zero_momentum_boundary}{domain=None} |
---|
2467 | Module: \module{shallow_water} |
---|
2468 | \label{pg: transmissive stage zero momentum boundary} |
---|
2469 | |
---|
2470 | This boundary returns same stage conserved quantities as |
---|
2471 | those present in its neighbour volume but sets momentum to zero. |
---|
2472 | The underlying domain must be specified when boundary is instantiated |
---|
2473 | |
---|
2474 | This type of boundary is useful when stage is known at the boundary as a |
---|
2475 | function of time, but momentum should be set to zero. This is for example |
---|
2476 | the case where a boundary is needed in the ocean on the two sides perpendicular |
---|
2477 | to the coast to maintain the wave height of the incoming wave. |
---|
2478 | |
---|
2479 | This class is specific to the shallow water equation as it works with the |
---|
2480 | momentum quantities assumed to be the second and third conserved quantities. |
---|
2481 | |
---|
2482 | This boundary condition should not cause the numerical instabilities seen with the transmissive momentum |
---|
2483 | boundary conditions (see Page \pageref{pg: transmissive boundary} and |
---|
2484 | Page \pageref{pg: transmissive momentum set stage boundary}). |
---|
2485 | \end{classdesc} |
---|
2486 | |
---|
2487 | \begin{classdesc}{Dirichlet_discharge_boundary}{domain=None, stage0=None, wh0=None} |
---|
2488 | Module: \module{shallow_water.shallow_water_domain} |
---|
2489 | |
---|
2490 | \code{stage0} sets the stage. |
---|
2491 | |
---|
2492 | \code{wh0} sets momentum in the inward normal direction. |
---|
2493 | \end{classdesc} |
---|
2494 | |
---|
2495 | \subsection{User-defined boundary conditions} |
---|
2496 | \label{sec:roll your own} |
---|
2497 | |
---|
2498 | All boundary classes must inherit from the generic boundary class |
---|
2499 | \code{Boundary} and have a method called \code{evaluate()} which must |
---|
2500 | take as inputs \code{self}, \code{vol_id} and \code{edge_id} where \code{self} refers to the |
---|
2501 | object itself and \code{vol_id} and \code{edge_id} are integers referring to |
---|
2502 | particular edges. The method must return a list of three floating point |
---|
2503 | numbers representing values for \code{stage}, |
---|
2504 | \code{xmomentum} and \code{ymomentum}, respectively. |
---|
2505 | |
---|
2506 | The constructor of a particular boundary class may be used to specify |
---|
2507 | particular values or flags to be used by the \code{evaluate()} method. |
---|
2508 | Please refer to the source code for the existing boundary conditions |
---|
2509 | for examples of how to implement boundary conditions. |
---|
2510 | |
---|
2511 | |
---|
2512 | \section{Forcing Terms}\index{Forcing terms} |
---|
2513 | \label{sec:forcing terms} |
---|
2514 | |
---|
2515 | \anuga provides a number of predefined forcing functions to be used with simulations. |
---|
2516 | Gravity and friction are always calculated using the elevation and friction quantities, |
---|
2517 | but the user may additionally add forcing terms to the list |
---|
2518 | \code{domain.forcing_terms} and have them affect the model. |
---|
2519 | |
---|
2520 | Currently, predefined forcing terms are: \\ |
---|
2521 | \begin{classdesc}{General_forcing}{domain, |
---|
2522 | quantity_name, |
---|
2523 | rate=0.0, |
---|
2524 | center=None, |
---|
2525 | radius=None, |
---|
2526 | polygon=None, |
---|
2527 | default_rate=None, |
---|
2528 | verbose=False} |
---|
2529 | Module: \module{shallow_water.shallow_water_domain} |
---|
2530 | |
---|
2531 | This is a general class to modify any quantity according to a given rate of change. |
---|
2532 | Other specific forcing terms are based on this class but it can be used by itself as well (e.g.\ to modify momentum). |
---|
2533 | |
---|
2534 | \code{domain} is the domain being evolved. |
---|
2535 | |
---|
2536 | \code{quantity_name} is the name of the quantity that will be affected by this forcing term. |
---|
2537 | |
---|
2538 | \code{rate} is the rate at which the quantity should change. This can be either a constant or a |
---|
2539 | function of time. Positive values indicate increases, negative values indicate decreases. |
---|
2540 | The parameter \code{rate} can be \code{None} at initialisation but must be specified |
---|
2541 | before a forcing term is applied (i.e.\ simulation has started). |
---|
2542 | The default value is 0.0 -- i.e.\ no forcing. |
---|
2543 | |
---|
2544 | \code{center} and \code{ radius} optionally restrict forcing to a circle with given center and radius. |
---|
2545 | |
---|
2546 | \code{polygon} optionally restricts forcing to an area enclosed by the given polygon. |
---|
2547 | |
---|
2548 | Note: specifying \code{center}, \code{radius} and \code{polygon} will cause an exception to be thrown. |
---|
2549 | Moreover, if the specified polygon or circle does not lie fully within the mesh boundary an Exception will be thrown. |
---|
2550 | |
---|
2551 | Example: |
---|
2552 | |
---|
2553 | \begin{verbatim} |
---|
2554 | P = [[x0, y0], [x1, y0], [x1, y1], [x0, y1]] # Square polygon |
---|
2555 | |
---|
2556 | xmom = General_forcing(domain, 'xmomentum', polygon=P) |
---|
2557 | ymom = General_forcing(domain, 'ymomentum', polygon=P) |
---|
2558 | |
---|
2559 | xmom.rate = f |
---|
2560 | ymom.rate = g |
---|
2561 | |
---|
2562 | domain.forcing_terms.append(xmom) |
---|
2563 | domain.forcing_terms.append(ymom) |
---|
2564 | \end{verbatim} |
---|
2565 | |
---|
2566 | Here, \code{f} and \code{g} are assumed to be defined as functions of time providing |
---|
2567 | a time dependent rate of change for xmomentum and ymomentum respectively. |
---|
2568 | \code{P} is assumed to be the polygon, specified as a list of points. |
---|
2569 | \end{classdesc} |
---|
2570 | |
---|
2571 | \begin{classdesc}{Inflow}{domain, |
---|
2572 | rate=0.0, |
---|
2573 | center=None, radius=None, |
---|
2574 | polygon=None, |
---|
2575 | default_rate=None, |
---|
2576 | verbose=False} |
---|
2577 | Module: \module{shallow_water.shallow_water_domain} |
---|
2578 | |
---|
2579 | This is a general class for inflow and abstraction of water according to a given rate of change. |
---|
2580 | This class will always modify the \code{stage} quantity. |
---|
2581 | |
---|
2582 | Inflow is based on the \code{General_forcing} class so the functionality is similar. |
---|
2583 | |
---|
2584 | \code{domain} is the domain being evolved. |
---|
2585 | |
---|
2586 | \code{rate} is the flow rate ($m^3/s$) at which the quantity should change. This can be either a constant or a |
---|
2587 | function of time. Positive values indicate inflow, negative values indicate outflow. |
---|
2588 | Note: The specified flow will be divided by the area of the inflow region and then applied to update the |
---|
2589 | stage quantity. |
---|
2590 | |
---|
2591 | \code{center} and \code{ radius} optionally restrict forcing to a circle with given center and radius. |
---|
2592 | |
---|
2593 | \code{polygon} optionally restricts forcing to an area enclosed by the given polygon. |
---|
2594 | |
---|
2595 | Example: |
---|
2596 | |
---|
2597 | \begin{verbatim} |
---|
2598 | hydrograph = Inflow(center=(320, 300), radius=10, |
---|
2599 | rate=file_function('QPMF_Rot_Sub13.tms')) |
---|
2600 | |
---|
2601 | domain.forcing_terms.append(hydrograph) |
---|
2602 | \end{verbatim} |
---|
2603 | |
---|
2604 | Here, \code{'QPMF_Rot_Sub13.tms'} is assumed to be a NetCDF file in the TMS format defining a timeseries for a hydrograph. |
---|
2605 | \end{classdesc} |
---|
2606 | |
---|
2607 | \begin{classdesc}{Rainfall}{domain, |
---|
2608 | rate=0.0, |
---|
2609 | center=None, |
---|
2610 | radius=None, |
---|
2611 | polygon=None, |
---|
2612 | default_rate=None, |
---|
2613 | verbose=False} |
---|
2614 | Module: \module{shallow_water.shallow_water_domain} |
---|
2615 | |
---|
2616 | This is a general class for implementing rainfall over the domain, possibly restricted to a given circle or polygon. |
---|
2617 | This class will always modify the \code{stage} quantity. |
---|
2618 | |
---|
2619 | Rainfall is based on the \code{General_forcing} class so the functionality is similar. |
---|
2620 | |
---|
2621 | \code{domain} is the domain being evolved. |
---|
2622 | |
---|
2623 | \code{rate} is the total rain rate over the specified domain. |
---|
2624 | Note: Raingauge Data needs to reflect the time step. |
---|
2625 | For example, if rain gauge is \code{mm} read every \code{dt} seconds, then the input |
---|
2626 | here is as \code{mm/dt} so 10 mm in 5 minutes becomes |
---|
2627 | 10/(5x60) = 0.0333mm/s. This parameter can be either a constant or a |
---|
2628 | function of time. Positive values indicate rain being added (or be used for general infiltration), |
---|
2629 | negative values indicate outflow at the specified rate (presumably this could model evaporation or abstraction). |
---|
2630 | |
---|
2631 | \code{center} and \code{ radius} optionally restrict forcing to a circle with given center and radius. |
---|
2632 | |
---|
2633 | \code{polygon} optionally restricts forcing to an area enclosed by the given polygon. |
---|
2634 | |
---|
2635 | Example: |
---|
2636 | |
---|
2637 | \begin{verbatim} |
---|
2638 | catchmentrainfall = Rainfall(rate=file_function('Q100_2hr_Rain.tms')) |
---|
2639 | domain.forcing_terms.append(catchmentrainfall) |
---|
2640 | \end{verbatim} |
---|
2641 | |
---|
2642 | Here, \code{'Q100_2hr_Rain.tms'} is assumed to be a NetCDF file in the TMS format defining a timeseries for the rainfall. |
---|
2643 | \end{classdesc} |
---|
2644 | |
---|
2645 | \begin{classdesc}{Culvert_flow}{domain, |
---|
2646 | culvert_description_filename=None, |
---|
2647 | culvert_routine=None, |
---|
2648 | end_point0=None, |
---|
2649 | end_point1=None, |
---|
2650 | enquiry_point0=None, |
---|
2651 | enquiry_point1=None, |
---|
2652 | type='box', |
---|
2653 | width=None, |
---|
2654 | height=None, |
---|
2655 | length=None, |
---|
2656 | number_of_barrels=1, |
---|
2657 | trigger_depth=0.01, |
---|
2658 | manning=None, |
---|
2659 | sum_loss=None, |
---|
2660 | use_velocity_head=False, |
---|
2661 | use_momentum_jet=False, |
---|
2662 | label=None, |
---|
2663 | description=None, |
---|
2664 | update_interval=None, |
---|
2665 | log_file=False, |
---|
2666 | discharge_hydrograph=False, |
---|
2667 | verbose=False} |
---|
2668 | Module: \module{culvert_flows.culvert_class} |
---|
2669 | |
---|
2670 | This is a general class for implementing flow through a culvert. |
---|
2671 | This class modifies the quantities \code{stage}, \code{xmomentum} and \code{ymomentum} in areas at both ends of the culvert. |
---|
2672 | |
---|
2673 | The \code{Culvert_flow} forcing term uses \code{Inflow} and \code{General_forcing} to update the quantities. |
---|
2674 | The flow direction is determined on-the-fly so openings are referenced simple as opening0 and opening1 |
---|
2675 | with either being able to take the role as Inflow or Outflow. |
---|
2676 | |
---|
2677 | The \code{Culvert_flow} class takes as input: |
---|
2678 | \begin{itemize} |
---|
2679 | \item \code{domain}: a reference to the domain being evolved |
---|
2680 | \item \code{culvert_description_filename}: |
---|
2681 | \item \code{culvert_routine}: |
---|
2682 | \item \code{end_point0}: Coordinates of one opening |
---|
2683 | \item \code{end_point1}: Coordinates of other opening |
---|
2684 | \item \code{enquiry_point0}: |
---|
2685 | \item \code{enquiry_point1}: |
---|
2686 | \item \code{type}: (default is 'box') |
---|
2687 | \item \code{width}: |
---|
2688 | \item \code{height}: |
---|
2689 | \item \code{length}: |
---|
2690 | \item \code{number_of_barrels}: Number of identical pipes in the culvert (default is 1) |
---|
2691 | \item \code{trigger_depth}: (default is 0.01) |
---|
2692 | \item \code{manning}: Mannings Roughness for Culvert |
---|
2693 | \item \code{sum_loss}: |
---|
2694 | \item \code{use_velocity_head}: |
---|
2695 | \item \code{use_momentum_jet}: |
---|
2696 | \item \code{label}: Short text naming the culvert |
---|
2697 | \item \code{description}: Text describing the culvert |
---|
2698 | \item \code{update_interval}: |
---|
2699 | \item \code{log_file}: |
---|
2700 | \item \code{discharge_hydrograph}: |
---|
2701 | \end{itemize} |
---|
2702 | |
---|
2703 | The user can specify different culvert routines. Hower \anuga currently provides only one, namely the |
---|
2704 | \code{boyd_generalised_culvert_model} as used in the example below: |
---|
2705 | |
---|
2706 | \begin{verbatim} |
---|
2707 | from anuga.culvert_flows.culvert_class import Culvert_flow |
---|
2708 | from anuga.culvert_flows.culvert_routines import boyd_generalised_culvert_model |
---|
2709 | |
---|
2710 | culvert1 = Culvert_flow(domain, |
---|
2711 | label='Culvert No. 1', |
---|
2712 | description='This culvert is a test unit 1.2m Wide by 0.75m High', |
---|
2713 | end_point0=[9.0, 2.5], |
---|
2714 | end_point1=[13.0, 2.5], |
---|
2715 | width=1.20, |
---|
2716 | height=0.75, |
---|
2717 | culvert_routine=boyd_generalised_culvert_model, |
---|
2718 | number_of_barrels=1, |
---|
2719 | verbose=True) |
---|
2720 | |
---|
2721 | culvert2 = Culvert_flow(domain, |
---|
2722 | label='Culvert No. 2', |
---|
2723 | description='This culvert is a circular test with d=1.2m', |
---|
2724 | end_point0=[9.0, 1.5], |
---|
2725 | end_point1=[30.0, 3.5], |
---|
2726 | diameter=1.20, |
---|
2727 | invert_level0=7, |
---|
2728 | culvert_routine=boyd_generalised_culvert_model, |
---|
2729 | number_of_barrels=1, |
---|
2730 | verbose=True) |
---|
2731 | |
---|
2732 | domain.forcing_terms.append(culvert1) |
---|
2733 | domain.forcing_terms.append(culvert2) |
---|
2734 | \end{verbatim} |
---|
2735 | \end{classdesc} |
---|
2736 | |
---|
2737 | |
---|
2738 | \section{Evolution}\index{evolution} |
---|
2739 | \label{sec:evolution} |
---|
2740 | |
---|
2741 | \begin{methoddesc}{\emph{<domain>}.evolve}{yieldstep=None, |
---|
2742 | finaltime=None, |
---|
2743 | duration=None, |
---|
2744 | skip_initial_step=False} |
---|
2745 | Module: \module{abstract_2d_finite_volumes.domain} |
---|
2746 | |
---|
2747 | This method is invoked once all the |
---|
2748 | preliminaries have been completed, and causes the model to progress |
---|
2749 | through successive steps in its evolution, storing results and |
---|
2750 | outputting statistics whenever a user-specified period |
---|
2751 | \code{yieldstep} is completed. Generally during this period the |
---|
2752 | model will evolve through several steps internally |
---|
2753 | as the method forces the water speed to be calculated |
---|
2754 | on successive new cells. |
---|
2755 | |
---|
2756 | \code{yieldstep} is the interval in seconds between yields where results are |
---|
2757 | stored, statistics written and the domain is inspected or possibly modified. |
---|
2758 | If omitted an internal predefined \code{yieldstep} is used. Internally, smaller |
---|
2759 | timesteps may be taken. |
---|
2760 | |
---|
2761 | \code{duration} is the duration of the simulation in seconds. |
---|
2762 | |
---|
2763 | \code{finaltime} is the time in seconds where simulation should end. This is currently |
---|
2764 | relative time, so it's the same as \code{duration}. If both \code{duration} and |
---|
2765 | \code{finaltime} are given an exception is thrown. |
---|
2766 | |
---|
2767 | \code{skip_initial_step} is a boolean flag that decides whether the first |
---|
2768 | yield step is skipped or not. This is useful for example to avoid |
---|
2769 | duplicate steps when multiple evolve processes are dove tailed. |
---|
2770 | |
---|
2771 | The code specified by the user in the block following the evolve statement is |
---|
2772 | only executed once every \code{yieldstep} even though |
---|
2773 | \anuga typically will take many more internal steps behind the scenes. |
---|
2774 | |
---|
2775 | You can include \method{evolve} in a statement of the type: |
---|
2776 | |
---|
2777 | \begin{verbatim} |
---|
2778 | for t in domain.evolve(yieldstep, finaltime): |
---|
2779 | <Do something with domain and t> |
---|
2780 | \end{verbatim} |
---|
2781 | \end{methoddesc} |
---|
2782 | |
---|
2783 | \subsection{Diagnostics} |
---|
2784 | \label{sec:diagnostics} |
---|
2785 | |
---|
2786 | \begin{methoddesc}{\emph{<domain>}.statistics}{} |
---|
2787 | Module: \module{abstract\_2d\_finite\_volumes.domain} |
---|
2788 | |
---|
2789 | Outputs statistics about the mesh within the \code{Domain}. |
---|
2790 | \end{methoddesc} |
---|
2791 | |
---|
2792 | \begin{methoddesc}{\emph{<domain>}.timestepping_statistics}{track_speeds=False, triangle_id=None} |
---|
2793 | Module: \module{abstract_2d_finite_volumes.domain} |
---|
2794 | |
---|
2795 | Returns a string of the following type for each timestep:\\ |
---|
2796 | \code{Time = 0.9000, delta t in [0.00598964, 0.01177388], steps=12 (12)} |
---|
2797 | |
---|
2798 | Here the numbers in \code{steps=12 (12)} indicate the number of steps taken and |
---|
2799 | the number of first-order steps, respectively. |
---|
2800 | |
---|
2801 | The optional keyword argument \code{track_speeds} will |
---|
2802 | generate a histogram of speeds generated by each triangle if set to \code{True}. The |
---|
2803 | speeds relate to the size of the timesteps used by \anuga and |
---|
2804 | this diagnostics may help pinpoint problem areas where excessive speeds |
---|
2805 | are generated. |
---|
2806 | |
---|
2807 | The optional keyword argument \code{triangle_id} can be used to specify a particular |
---|
2808 | triangle rather than the one with the largest speed. |
---|
2809 | \end{methoddesc} |
---|
2810 | |
---|
2811 | \begin{methoddesc}{\emph{<domain>}.boundary_statistics}{quantities=None, |
---|
2812 | tags=None} |
---|
2813 | Module: \module{abstract_2d_finite_volumes.domain} |
---|
2814 | |
---|
2815 | Generates output about boundary forcing at each timestep. |
---|
2816 | |
---|
2817 | \code{quantities} names the quantities to be reported -- may be \code{None}, |
---|
2818 | a string or a list of strings. |
---|
2819 | |
---|
2820 | \code{tags} names the tags to be reported -- may be either None, a string or a list of strings. |
---|
2821 | |
---|
2822 | When \code{quantities = 'stage'} and \code{tags = ['top', 'bottom']} |
---|
2823 | will return a string like: |
---|
2824 | |
---|
2825 | \begin{verbatim} |
---|
2826 | Boundary values at time 0.5000: |
---|
2827 | top: |
---|
2828 | stage in [ -0.25821218, -0.02499998] |
---|
2829 | bottom: |
---|
2830 | stage in [ -0.27098821, -0.02499974] |
---|
2831 | \end{verbatim} |
---|
2832 | \end{methoddesc} |
---|
2833 | |
---|
2834 | \begin{methoddesc}{Q = \emph{<domain>}.get_quantity}{name, |
---|
2835 | location='vertices', |
---|
2836 | indices=None} |
---|
2837 | Module: \module{abstract_2d_finite_volumes.domain} |
---|
2838 | |
---|
2839 | This function returns a Quantity object Q. |
---|
2840 | Access to its values should be done through \code{Q.get_values()} documented on Page \pageref{pg:get values}. |
---|
2841 | |
---|
2842 | \code{name} is the name of the quantity to retrieve. |
---|
2843 | |
---|
2844 | \code{location} is |
---|
2845 | |
---|
2846 | \code{indices} is |
---|
2847 | \end{methoddesc} |
---|
2848 | |
---|
2849 | \begin{methoddesc}{\emph{<domain>}.set_quantities_to_be_monitored}{quantity, |
---|
2850 | polygon=None, |
---|
2851 | time_interval=None} |
---|
2852 | Module: \module{abstract\_2d\_finite\_volumes.domain} |
---|
2853 | |
---|
2854 | Selects quantities and derived quantities for which extrema attained at internal timesteps |
---|
2855 | will be collected. |
---|
2856 | |
---|
2857 | \code{quantity} specifies the quantity or quantities to be monitored and must be either: |
---|
2858 | \begin{itemize} |
---|
2859 | \item the name of a quantity or derived quantity such as 'stage-elevation', |
---|
2860 | \item a list of quantity names, or |
---|
2861 | \item \code{None}. |
---|
2862 | \end{itemize} |
---|
2863 | |
---|
2864 | \code{polygon} can be used to monitor only triangles inside the polygon. Otherwise |
---|
2865 | all triangles will be included. |
---|
2866 | |
---|
2867 | \code{time_interval} will restrict monitoring to time steps in the interval. Otherwise |
---|
2868 | all timesteps will be included. |
---|
2869 | |
---|
2870 | Information can be tracked in the evolve loop by printing \code{quantity_statistics} and |
---|
2871 | collected data will be stored in the SWW file. |
---|
2872 | \end{methoddesc} |
---|
2873 | |
---|
2874 | \begin{methoddesc}{\emph{<domain>}.quantity_statistics}{precision='\%.4f'} |
---|
2875 | Module: \module{abstract_2d_finite_volumes.domain} |
---|
2876 | |
---|
2877 | Reports on extrema attained by selected quantities. |
---|
2878 | |
---|
2879 | Returns a string of the following type for each timestep: |
---|
2880 | |
---|
2881 | \begin{verbatim} |
---|
2882 | Monitored quantities at time 1.0000: |
---|
2883 | stage-elevation: |
---|
2884 | values since time = 0.00 in [0.00000000, 0.30000000] |
---|
2885 | minimum attained at time = 0.00000000, location = (0.16666667, 0.33333333) |
---|
2886 | maximum attained at time = 0.00000000, location = (0.83333333, 0.16666667) |
---|
2887 | ymomentum: |
---|
2888 | values since time = 0.00 in [0.00000000, 0.06241221] |
---|
2889 | minimum attained at time = 0.00000000, location = (0.33333333, 0.16666667) |
---|
2890 | maximum attained at time = 0.22472667, location = (0.83333333, 0.66666667) |
---|
2891 | xmomentum: |
---|
2892 | values since time = 0.00 in [-0.06062178, 0.47886313] |
---|
2893 | minimum attained at time = 0.00000000, location = (0.16666667, 0.33333333) |
---|
2894 | maximum attained at time = 0.35103646, location = (0.83333333, 0.16666667) |
---|
2895 | \end{verbatim} |
---|
2896 | |
---|
2897 | The quantities (and derived quantities) listed here must be selected at model |
---|
2898 | initialisation time using the method \code{domain.set_quantities_to_be_monitored()}. |
---|
2899 | |
---|
2900 | The optional keyword argument \code{precision='\%.4f'} will |
---|
2901 | determine the precision used for floating point values in the output. |
---|
2902 | This diagnostics helps track extrema attained by the selected quantities |
---|
2903 | at every internal timestep. |
---|
2904 | |
---|
2905 | These values are also stored in the SWW file for post-processing. |
---|
2906 | \end{methoddesc} |
---|
2907 | |
---|
2908 | \begin{methoddesc}{\emph{<quantity>}.get_values}{interpolation_points=None, |
---|
2909 | location='vertices', |
---|
2910 | indices=None, |
---|
2911 | use_cache=False, |
---|
2912 | verbose=False} |
---|
2913 | \label{pg:get values} |
---|
2914 | Module: \module{abstract_2d_finite_volumes.quantity} |
---|
2915 | |
---|
2916 | Extract values for quantity as a numeric array. |
---|
2917 | |
---|
2918 | \code{interpolation_points} is a list of (x, y) coordinates where the value is |
---|
2919 | sought (using interpolation). If \code{interpolation_points} is given, values |
---|
2920 | for \code{location} and \code{indices} are ignored. |
---|
2921 | Assume either an absolute UTM coordinates or geospatial data object. |
---|
2922 | |
---|
2923 | \code{location} specifies where values are to be stored. |
---|
2924 | Permissible options are 'vertices', 'edges', 'centroids' or 'unique vertices'. |
---|
2925 | |
---|
2926 | The returned values will have the leading dimension equal to length of the \code{indices} list or |
---|
2927 | N (all values) if \code{indices} is \code{None}. |
---|
2928 | |
---|
2929 | If \code{location} is 'centroids' the dimension of returned |
---|
2930 | values will be a list or a numeric array of length N, N being |
---|
2931 | the number of elements. |
---|
2932 | |
---|
2933 | If \code{location} is 'vertices' or 'edges' the dimension of |
---|
2934 | returned values will be of dimension \code{Nx3}. |
---|
2935 | |
---|
2936 | If \code{location} is 'unique vertices' the average value at |
---|
2937 | each vertex will be returned and the dimension of returned values |
---|
2938 | will be a 1d array of length "number of vertices" |
---|
2939 | |
---|
2940 | \code{indices} is the set of element ids that the operation applies to. |
---|
2941 | |
---|
2942 | The values will be stored in elements following their internal ordering. |
---|
2943 | \end{methoddesc} |
---|
2944 | |
---|
2945 | \begin{methoddesc}{\emph{<quantity>}.set_values}{numeric=None, |
---|
2946 | quantity=None, |
---|
2947 | function=None, |
---|
2948 | geospatial_data=None, |
---|
2949 | filename=None, |
---|
2950 | attribute_name=None, |
---|
2951 | alpha=None, |
---|
2952 | location='vertices', |
---|
2953 | polygon=None, |
---|
2954 | indices=None, |
---|
2955 | smooth=False, |
---|
2956 | verbose=False, |
---|
2957 | use_cache=False} |
---|
2958 | Module: \module{abstract_2d_finite_volumes.quantity} |
---|
2959 | |
---|
2960 | Assign values to a quantity object. |
---|
2961 | |
---|
2962 | This method works the same way as \code{set_quantity()} except that it doesn't take |
---|
2963 | a quantity name as the first argument since it is applied directly to the quantity. |
---|
2964 | Use \code{set_values} is used to assign |
---|
2965 | values to a new quantity that has been created but which is |
---|
2966 | not part of the domain's predefined quantities. |
---|
2967 | |
---|
2968 | \code{location} is ?? |
---|
2969 | |
---|
2970 | \code{indices} is ?? |
---|
2971 | |
---|
2972 | The method \code{set_values()} is always called by \code{set_quantity()} |
---|
2973 | behind the scenes. |
---|
2974 | \end{methoddesc} |
---|
2975 | |
---|
2976 | \begin{methoddesc}{\emph{<quantity>}.get_integral}{} |
---|
2977 | Module: \module{abstract_2d_finite_volumes.quantity} |
---|
2978 | |
---|
2979 | Return the computed integral over the entire domain for the quantity. |
---|
2980 | \end{methoddesc} |
---|
2981 | |
---|
2982 | \begin{methoddesc}{\emph{<quantity>}.get_maximum_value}{indices=None} |
---|
2983 | Module: \module{abstract_2d_finite_volumes.quantity} |
---|
2984 | |
---|
2985 | Return the maximum value of a quantity (on centroids). |
---|
2986 | |
---|
2987 | \code{indices} is the optional set of element \code{id}s that |
---|
2988 | the operation applies to. |
---|
2989 | |
---|
2990 | We do not seek the maximum at vertices as each vertex can |
---|
2991 | have multiple values -- one for each triangle sharing it. |
---|
2992 | \end{methoddesc} |
---|
2993 | |
---|
2994 | \begin{methoddesc}{\emph{<quantity>}.get_maximum_location}{indices=None} |
---|
2995 | Module: \module{abstract_2d_finite_volumes.quantity} |
---|
2996 | |
---|
2997 | Return the location of the maximum value of a quantity (on centroids). |
---|
2998 | |
---|
2999 | \code{indices} is the optional set of element \code{id}s that |
---|
3000 | the operation applies to. |
---|
3001 | |
---|
3002 | We do not seek the maximum at vertices as each vertex can |
---|
3003 | have multiple values -- one for each triangle sharing it. |
---|
3004 | |
---|
3005 | If there are multiple cells with the same maximum value, the |
---|
3006 | first cell encountered in the triangle array is returned. |
---|
3007 | \end{methoddesc} |
---|
3008 | |
---|
3009 | \begin{methoddesc}{\emph{<domain>}.get_wet_elements}{indices=None} |
---|
3010 | Module: \module{shallow_water.shallow_water_domain} |
---|
3011 | |
---|
3012 | Returns the indices for elements where h $>$ minimum_allowed_height |
---|
3013 | |
---|
3014 | \code{indices} is the optional set of element \code{id}s that |
---|
3015 | the operation applies to. |
---|
3016 | \end{methoddesc} |
---|
3017 | |
---|
3018 | \begin{methoddesc}{\emph{<domain>}.get_maximum_inundation_elevation}{indices=None} |
---|
3019 | Module: \module{shallow_water.shallow_water_domain} |
---|
3020 | |
---|
3021 | Return highest elevation where h $>$ 0. |
---|
3022 | |
---|
3023 | \code{indices} is the optional set of element \code{id}s that |
---|
3024 | the operation applies to. |
---|
3025 | |
---|
3026 | Example to find maximum runup elevation: |
---|
3027 | \begin{verbatim} |
---|
3028 | z = domain.get_maximum_inundation_elevation() |
---|
3029 | \end{verbatim} |
---|
3030 | \end{methoddesc} |
---|
3031 | |
---|
3032 | \begin{methoddesc}{\emph{<domain>}.get_maximum_inundation_location}{indices=None} |
---|
3033 | Module: \module{shallow_water.shallow_water_domain} |
---|
3034 | |
---|
3035 | Return location (x,y) of highest elevation where h $>$ 0. |
---|
3036 | |
---|
3037 | \code{indices} is the optional set of element \code{id}s that |
---|
3038 | the operation applies to. |
---|
3039 | |
---|
3040 | Example to find maximum runup location: |
---|
3041 | \begin{verbatim} |
---|
3042 | x, y = domain.get_maximum_inundation_location() |
---|
3043 | \end{verbatim} |
---|
3044 | \end{methoddesc} |
---|
3045 | |
---|
3046 | |
---|
3047 | \section{Queries of SWW model output files} |
---|
3048 | After a model has been run, it is often useful to extract various information from the SWW |
---|
3049 | output file (see Section \ref{sec:sww format}). This is typically more convenient than using the |
---|
3050 | diagnostics described in Section \ref{sec:diagnostics} which rely on the model running -- something |
---|
3051 | that can be very time consuming. The SWW files are easy and quick to read and offer information |
---|
3052 | about the model results such as runup heights, time histories of selected quantities, |
---|
3053 | flow through cross sections and much more. |
---|
3054 | |
---|
3055 | \begin{funcdesc}{elevation = get_maximum_inundation_elevation}{filename, |
---|
3056 | polygon=None, |
---|
3057 | time_interval=None, |
---|
3058 | verbose=False} |
---|
3059 | Module: \module{shallow_water.data_manager} |
---|
3060 | |
---|
3061 | Return the highest elevation where depth is positive ($h > 0$). |
---|
3062 | |
---|
3063 | \code{filename} is the path to a NetCDF SWW file containing \anuga model output. |
---|
3064 | |
---|
3065 | \code{polygon} restricts the query to the points that lie within the polygon. |
---|
3066 | |
---|
3067 | \code {time_interval} restricts the query to within the time interval. |
---|
3068 | |
---|
3069 | Example to find maximum runup elevation: |
---|
3070 | |
---|
3071 | \begin{verbatim} |
---|
3072 | max_runup = get_maximum_inundation_elevation(filename) |
---|
3073 | \end{verbatim} |
---|
3074 | |
---|
3075 | If no inundation is found (within the \code{polygon} and \code{time_interval}, if specified) |
---|
3076 | the return value is \code{None}. This indicates "No Runup" or "Everything is dry". |
---|
3077 | \end{funcdesc} |
---|
3078 | |
---|
3079 | \begin{funcdesc}{(x, y) = get_maximum_inundation_location}{filename, |
---|
3080 | polygon=None, |
---|
3081 | time_interval=None, |
---|
3082 | verbose=False} |
---|
3083 | Module: \module{shallow_water.data_manager} |
---|
3084 | |
---|
3085 | Return location (x,y) of the highest elevation where depth is positive ($h > 0$). |
---|
3086 | |
---|
3087 | \code{filename} is the path to a NetCDF SWW file containing \anuga model output. |
---|
3088 | |
---|
3089 | \code{polygon} restricts the query to the points that lie within the polygon. |
---|
3090 | |
---|
3091 | \code {time_interval} restricts the query to within the time interval. |
---|
3092 | |
---|
3093 | Example to find maximum runup location: |
---|
3094 | |
---|
3095 | \begin{verbatim} |
---|
3096 | max_runup_location = get_maximum_inundation_location(filename) |
---|
3097 | \end{verbatim} |
---|
3098 | |
---|
3099 | If no inundation is found (within the \code{polygon} and \code{time_interval}, if specified) |
---|
3100 | the return value is \code{None}. This indicates "No Runup" or "Everything is dry". |
---|
3101 | is \code{None}. This indicates "No Runup" or "Everything is dry". |
---|
3102 | \end{funcdesc} |
---|
3103 | |
---|
3104 | \begin{funcdesc}{sww2timeseries}{swwfiles, |
---|
3105 | gauge_filename, |
---|
3106 | production_dirs, |
---|
3107 | report=None, |
---|
3108 | reportname=None, |
---|
3109 | plot_quantity=None, |
---|
3110 | generate_fig=False, |
---|
3111 | surface=None, |
---|
3112 | time_min=None, |
---|
3113 | time_max=None, |
---|
3114 | time_thinning=1, |
---|
3115 | time_unit=None, |
---|
3116 | title_on=None, |
---|
3117 | use_cache=False, |
---|
3118 | verbose=False} |
---|
3119 | Module: \module{abstract_2d_finite_volumes.util} |
---|
3120 | |
---|
3121 | Read a set of SWW files and plot the time series for the prescribed quantities |
---|
3122 | at defined gauge locations and prescribed time range. |
---|
3123 | |
---|
3124 | \code{swwfiles} is a dictionary of SWW files with keys of \code{label_id}. |
---|
3125 | |
---|
3126 | \code{gauge_filename} is the path to a file containing gauge data. |
---|
3127 | |
---|
3128 | THIS NEEDS MORE WORK. WORK ON FUNCTION __DOC__ STRING, IF NOTHING ELSE! |
---|
3129 | \end{funcdesc} |
---|
3130 | |
---|
3131 | \begin{funcdesc}{(time, Q) = get_flow_through_cross_section}{filename, polyline, verbose=False} |
---|
3132 | Module: \module{shallow_water.data_manager} |
---|
3133 | |
---|
3134 | Obtain flow ($m^3/s$) perpendicular to specified cross section. |
---|
3135 | |
---|
3136 | \code{filename} is the path to the SWW file. |
---|
3137 | |
---|
3138 | \code{polyline} is the representation of the desired cross section -- it may contain |
---|
3139 | multiple sections allowing for complex shapes. Assumes absolute UTM coordinates. |
---|
3140 | |
---|
3141 | Returns a tuple \code{time, Q} where: |
---|
3142 | |
---|
3143 | \code{time} is all the stored times in the SWW file. |
---|
3144 | |
---|
3145 | \code{Q} is a hydrograph of total flow across the given segments for all stored times. |
---|
3146 | |
---|
3147 | The normal flow is computed for each triangle intersected by the \code{polyline} and |
---|
3148 | added up. If multiple segments at different angles are specified the normal flows |
---|
3149 | may partially cancel each other. |
---|
3150 | |
---|
3151 | Example to find flow through cross section: |
---|
3152 | |
---|
3153 | \begin{verbatim} |
---|
3154 | cross_section = [[x, 0], [x, width]] |
---|
3155 | time, Q = get_flow_through_cross_section(filename, cross_section) |
---|
3156 | \end{verbatim} |
---|
3157 | \end{funcdesc} |
---|
3158 | |
---|
3159 | |
---|
3160 | \section{Other} |
---|
3161 | \begin{methoddesc}{quantity = \emph{<domain>}.create_quantity_from_expression}{string} |
---|
3162 | Module: \module{abstract_2d_finite_volumes.domain} |
---|
3163 | |
---|
3164 | Create a new quantity from other quantities in the domain using an arbitrary expression. |
---|
3165 | |
---|
3166 | \code{string} is a string containing an arbitrary quantity expression. |
---|
3167 | |
---|
3168 | Returns the new \code{Quantity} object. |
---|
3169 | |
---|
3170 | Handy for creating derived quantities on-the-fly: |
---|
3171 | |
---|
3172 | \begin{verbatim} |
---|
3173 | Depth = domain.create_quantity_from_expression('stage-elevation') |
---|
3174 | |
---|
3175 | exp = '(xmomentum*xmomentum + ymomentum*ymomentum)**0.5' |
---|
3176 | Absolute_momentum = domain.create_quantity_from_expression(exp) |
---|
3177 | \end{verbatim} |
---|
3178 | |
---|
3179 | %See also \file{Analytical_solution_circular_hydraulic_jump.py} for an example. |
---|
3180 | \end{methoddesc} |
---|
3181 | |
---|
3182 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
3183 | |
---|
3184 | \chapter{\anuga System Architecture} |
---|
3185 | |
---|
3186 | \section{File Formats} |
---|
3187 | \label{sec:file formats} |
---|
3188 | |
---|
3189 | \anuga makes use of a number of different file formats. The |
---|
3190 | following table lists all these formats, which are described in more |
---|
3191 | detail in the paragraphs below. |
---|
3192 | |
---|
3193 | \begin{center} |
---|
3194 | \begin{tabular}{|ll|} \hline |
---|
3195 | \textbf{Extension} & \textbf{Description} \\ |
---|
3196 | \hline\hline |
---|
3197 | \code{.sww} & NetCDF format for storing model output with mesh information \code{f(t,x,y)}\\ |
---|
3198 | \code{.sts} & NetCDF format for storing model ouput \code{f(t,x,y)} without mesh information\\ |
---|
3199 | \code{.tms} & NetCDF format for storing time series \code{f(t)}\\ |
---|
3200 | \code{.csv/.txt} & ASCII format for storing arbitrary points and associated attributes\\ |
---|
3201 | \code{.pts} & NetCDF format for storing arbitrary points and associated attributes\\ |
---|
3202 | \code{.asc} & ASCII format of regular DEMs as output from ArcView\\ |
---|
3203 | \code{.prj} & Associated ArcView file giving more metadata for \code{.asc} format\\ |
---|
3204 | \code{.ers} & ERMapper header format of regular DEMs for ArcView\\ |
---|
3205 | \code{.dem} & NetCDF representation of regular DEM data\\ |
---|
3206 | \code{.tsh} & ASCII format for storing meshes and associated boundary and region info\\ |
---|
3207 | \code{.msh} & NetCDF format for storing meshes and associated boundary and region info\\ |
---|
3208 | \code{.nc} & Native ferret NetCDF format\\ |
---|
3209 | \code{.geo} & Houdinis ASCII geometry format (?) \\ \par \hline |
---|
3210 | \end{tabular} |
---|
3211 | \end{center} |
---|
3212 | |
---|
3213 | The above table shows the file extensions used to identify the |
---|
3214 | formats of files. However, typically, in referring to a format we |
---|
3215 | capitalise the extension and omit the initial full stop -- thus, we |
---|
3216 | refer to 'SWW files' or 'PRJ files', not 'sww files' or '.prj files'. |
---|
3217 | |
---|
3218 | \bigskip |
---|
3219 | |
---|
3220 | A typical dataflow can be described as follows: |
---|
3221 | |
---|
3222 | SOMETHING MISSING HERE!? |
---|
3223 | |
---|
3224 | \subsection{Manually Created Files} |
---|
3225 | |
---|
3226 | \begin{tabular}{ll} |
---|
3227 | ASC, PRJ & Digital elevation models (gridded)\\ |
---|
3228 | NC & Model outputs for use as boundary conditions (e.g.\ from MOST) |
---|
3229 | \end{tabular} |
---|
3230 | |
---|
3231 | \subsection{Automatically Created Files} |
---|
3232 | |
---|
3233 | \begin{tabular}{ll} |
---|
3234 | ASC, PRJ $\rightarrow$ DEM $\rightarrow$ PTS & Convert DEMs to native \code{.pts} file\\ |
---|
3235 | NC $\rightarrow$ SWW & Convert MOST boundary files to boundary \code{.sww}\\ |
---|
3236 | PTS + TSH $\rightarrow$ TSH with elevation & Least squares fit\\ |
---|
3237 | TSH $\rightarrow$ SWW & Convert TSH to \code{.sww}-viewable using \code{animate}\\ |
---|
3238 | TSH + Boundary SWW $\rightarrow$ SWW & Simulation using \code{\anuga}\\ |
---|
3239 | Polygonal mesh outline $\rightarrow$ & TSH or MSH |
---|
3240 | \end{tabular} |
---|
3241 | |
---|
3242 | \bigskip |
---|
3243 | |
---|
3244 | \subsection{SWW, STS and TMS Formats} |
---|
3245 | \label{sec:sww format} |
---|
3246 | The SWW, STS and TMS formats are all NetCDF formats and are of key importance for \anuga. |
---|
3247 | |
---|
3248 | An SWW file is used for storing \anuga output and therefore pertains |
---|
3249 | to a set of points and a set of times at which a model is evaluated. |
---|
3250 | It contains, in addition to dimension information, the following |
---|
3251 | variables: |
---|
3252 | |
---|
3253 | \begin{itemize} |
---|
3254 | \item \code{x} and \code{y}: coordinates of the points, represented as numeric arrays |
---|
3255 | \item \code{elevation}: a numeric array storing bed-elevations |
---|
3256 | \item \code{volumes}: a list specifying the points at the vertices of each of the triangles |
---|
3257 | % Refer here to the example to be provided in describing the simple example |
---|
3258 | \item \code{time}: a numeric array containing times for model evaluation |
---|
3259 | \end{itemize} |
---|
3260 | |
---|
3261 | The contents of an SWW file may be viewed using the anuga viewer \code{animate}, |
---|
3262 | which creates an on-screen visialisation. See section \ref{sec:animate} |
---|
3263 | (page \pageref{sec:animate}) in Appendix \ref{ch:supportingtools} for more on \code{animate}. |
---|
3264 | |
---|
3265 | Alternatively, there are tools, such as \code{ncdump}, that allow |
---|
3266 | you to convert a NetCDF file into a readable format such as the |
---|
3267 | Class Definition Language (CDL). The following is an excerpt from a |
---|
3268 | CDL representation of the output file \file{runup.sww} generated |
---|
3269 | from running the simple example \file{runup.py} of Chapter \ref{ch:getstarted}: |
---|
3270 | |
---|
3271 | %FIXME (Ole): Should put in example with nonzero xllcorner, yllcorner |
---|
3272 | \verbatiminput{examples/bedslopeexcerpt.cdl} |
---|
3273 | |
---|
3274 | The SWW format is used not only for output but also serves as input |
---|
3275 | for functions such as \function{file\_boundary} and |
---|
3276 | \function{file\_function}, described in Chapter \ref{ch:interface}. |
---|
3277 | |
---|
3278 | An STS file is used for storing a set of points and associated times. |
---|
3279 | It contains, in addition to dimension information, the following |
---|
3280 | variables: |
---|
3281 | \begin{itemize} |
---|
3282 | \item \code{x} and \code{y}: coordinates of the points, represented as numeric arrays |
---|
3283 | \item \code{permutation}: Original indices of the points as specified by the optional \code{ordering_file} |
---|
3284 | (see the function \code{urs2sts()} in Section \ref{sec:basicfileconversions}) |
---|
3285 | \item \code{elevation}: a numeric array storing bed-elevations |
---|
3286 | % Refer here to the example to be provided in describing the simple example |
---|
3287 | \item \code{time}: a numeric array containing times for model evaluation |
---|
3288 | \end{itemize} |
---|
3289 | |
---|
3290 | The only difference between the STS format and the SWW format is the former does |
---|
3291 | not contain a list specifying the points at the vertices of each of the triangles |
---|
3292 | (\code{volumes}). Consequently information (arrays) stored within an STS file such |
---|
3293 | as \code{elevation} can be accessed in exactly the same way as it would be extracted |
---|
3294 | from an SWW file. |
---|
3295 | |
---|
3296 | A TMS file is used to store time series data that is independent of position. |
---|
3297 | |
---|
3298 | \subsection{Mesh File Formats} |
---|
3299 | |
---|
3300 | A mesh file is a file that has a specific format suited to |
---|
3301 | triangular meshes and their outlines. A mesh file can have one of |
---|
3302 | two formats: it can be either a TSH file, which is an ASCII file, or |
---|
3303 | an MSH file, which is a NetCDF file. A mesh file can be generated |
---|
3304 | from the function \function{create_mesh_from_regions()} (see |
---|
3305 | Section \ref{sec:meshgeneration}) and be used to initialise a domain. |
---|
3306 | |
---|
3307 | A mesh file can define the outline of the mesh -- the vertices and |
---|
3308 | line segments that enclose the region in which the mesh is |
---|
3309 | created -- and the triangular mesh itself, which is specified by |
---|
3310 | listing the triangles and their vertices, and the segments, which |
---|
3311 | are those sides of the triangles that are associated with boundary |
---|
3312 | conditions. |
---|
3313 | |
---|
3314 | In addition, a mesh file may contain 'holes' and/or 'regions'. A |
---|
3315 | hole represents an area where no mesh is to be created, while a |
---|
3316 | region is a labelled area used for defining properties of a mesh, |
---|
3317 | such as friction values. A hole or region is specified by a point |
---|
3318 | and bounded by a number of segments that enclose that point. |
---|
3319 | |
---|
3320 | A mesh file can also contain a georeference, which describes an |
---|
3321 | offset to be applied to $x$ and $y$ values -- e.g.\ to the vertices. |
---|
3322 | |
---|
3323 | \subsection{Formats for Storing Arbitrary Points and Attributes} |
---|
3324 | |
---|
3325 | A CSV/TXT file is used to store data representing |
---|
3326 | arbitrary numerical attributes associated with a set of points. |
---|
3327 | |
---|
3328 | The format for an CSV/TXT file is:\\ |
---|
3329 | \\ |
---|
3330 | first line: \code{[column names]}\\ |
---|
3331 | other lines: \code{[x value], [y value], [attributes]}\\ |
---|
3332 | |
---|
3333 | for example: |
---|
3334 | |
---|
3335 | \begin{verbatim} |
---|
3336 | x, y, elevation, friction |
---|
3337 | 0.6, 0.7, 4.9, 0.3 |
---|
3338 | 1.9, 2.8, 5.0, 0.3 |
---|
3339 | 2.7, 2.4, 5.2, 0.3 |
---|
3340 | \end{verbatim} |
---|
3341 | |
---|
3342 | The delimiter is a comma. The first two columns are assumed to |
---|
3343 | be $x$ and $y$ coordinates. |
---|
3344 | |
---|
3345 | A PTS file is a NetCDF representation of the data held in an points CSV |
---|
3346 | file. If the data is associated with a set of $N$ points, then the |
---|
3347 | data is stored using an $N \times 2$ numeric array of float |
---|
3348 | variables for the points and an $N \times 1$ numeric array for each |
---|
3349 | attribute. |
---|
3350 | |
---|
3351 | \subsection{ArcView Formats} |
---|
3352 | |
---|
3353 | Files of the three formats ASC, PRJ and ERS are all associated with |
---|
3354 | data from ArcView. |
---|
3355 | |
---|
3356 | An ASC file is an ASCII representation of DEM output from ArcView. |
---|
3357 | It contains a header with the following format: |
---|
3358 | |
---|
3359 | \begin{tabular}{l l} |
---|
3360 | \code{ncols} & \code{753}\\ |
---|
3361 | \code{nrows} & \code{766}\\ |
---|
3362 | \code{xllcorner} & \code{314036.58727982}\\ |
---|
3363 | \code{yllcorner} & \code{6224951.2960092}\\ |
---|
3364 | \code{cellsize} & \code{100}\\ |
---|
3365 | \code{NODATA_value} & \code{-9999} |
---|
3366 | \end{tabular} |
---|
3367 | |
---|
3368 | The remainder of the file contains the elevation data for each grid point |
---|
3369 | in the grid defined by the above information. |
---|
3370 | |
---|
3371 | A PRJ file is an ArcView file used in conjunction with an ASC file |
---|
3372 | to represent metadata for a DEM. |
---|
3373 | |
---|
3374 | \subsection{DEM Format} |
---|
3375 | |
---|
3376 | A DEM file in \anuga is a NetCDF representation of regular DEM data. |
---|
3377 | |
---|
3378 | \subsection{Other Formats} |
---|
3379 | |
---|
3380 | \subsection{Basic File Conversions} |
---|
3381 | \label{sec:basicfileconversions} |
---|
3382 | |
---|
3383 | \begin{funcdesc}{sww2dem}{(basename_in, |
---|
3384 | basename_out=None, |
---|
3385 | quantity=None, |
---|
3386 | timestep=None, |
---|
3387 | reduction=None, |
---|
3388 | cellsize=10, |
---|
3389 | number_of_decimal_places=None, |
---|
3390 | NODATA_value=-9999, |
---|
3391 | easting_min=None, |
---|
3392 | easting_max=None, |
---|
3393 | northing_min=None, |
---|
3394 | northing_max=None, |
---|
3395 | verbose=False, |
---|
3396 | origin=None, |
---|
3397 | datum='WGS84', |
---|
3398 | format='ers', |
---|
3399 | block_size=None} |
---|
3400 | Module: \module{shallow_water.data_manager} |
---|
3401 | |
---|
3402 | Takes data from an SWW file \code{basename_in} and converts it to DEM format (ASC or |
---|
3403 | ERS) of a desired grid size \code{cellsize} in metres. The user can select how |
---|
3404 | many decimal places the output data is represented with by using \code{number_of_decimal_places}, |
---|
3405 | with the default being 3. |
---|
3406 | |
---|
3407 | The $easting$ and $northing$ values are used if the user wishes to determine the output |
---|
3408 | within a specified rectangular area. The \code{reduction} input refers to a function |
---|
3409 | to reduce the quantities over all time step of the SWW file, e.g.\ maximum. |
---|
3410 | \end{funcdesc} |
---|
3411 | |
---|
3412 | \begin{funcdesc}{dem2pts}{basename_in, basename_out=None, |
---|
3413 | easting_min=None, easting_max=None, |
---|
3414 | northing_min=None, northing_max=None, |
---|
3415 | use_cache=False, verbose=False} |
---|
3416 | Module: \module{shallow\_water.data\_manager} |
---|
3417 | |
---|
3418 | Takes DEM data (a NetCDF file representation of data from a regular Digital |
---|
3419 | Elevation Model) and converts it to PTS format. |
---|
3420 | \end{funcdesc} |
---|
3421 | |
---|
3422 | \begin{funcdesc}{urs2sts}{basename_in, basename_out=None, |
---|
3423 | weights=None, verbose=False, |
---|
3424 | origin=None,mean_stage=0.0, |
---|
3425 | zscale=1.0, ordering_filename=None} |
---|
3426 | Module: \module{shallow\_water.data\_manager} |
---|
3427 | |
---|
3428 | Takes URS data (timeseries data in mux2 format) and converts it to STS format. |
---|
3429 | The optional filename \code{ordering\_filename} specifies the permutation of indices |
---|
3430 | of points to select along with their longitudes and latitudes. This permutation will also be |
---|
3431 | stored in the STS file. If absent, all points are taken and the permutation will be trivial, |
---|
3432 | i.e.\ $0, 1, \ldots, N-1$, where $N$ is the total number of points stored. |
---|
3433 | \end{funcdesc} |
---|
3434 | |
---|
3435 | \begin{funcdesc}{csv2building\_polygons}{file\_name, floor\_height=3} |
---|
3436 | Module: \module{shallow\_water.data\_manager} |
---|
3437 | |
---|
3438 | Convert CSV files of the form: |
---|
3439 | |
---|
3440 | \begin{verbatim} |
---|
3441 | easting,northing,id,floors |
---|
3442 | 422664.22,870785.46,2,0 |
---|
3443 | 422672.48,870780.14,2,0 |
---|
3444 | 422668.17,870772.62,2,0 |
---|
3445 | 422660.35,870777.17,2,0 |
---|
3446 | 422664.22,870785.46,2,0 |
---|
3447 | 422661.30,871215.06,3,1 |
---|
3448 | 422667.50,871215.70,3,1 |
---|
3449 | 422668.30,871204.86,3,1 |
---|
3450 | 422662.21,871204.33,3,1 |
---|
3451 | 422661.30,871215.06,3,1 |
---|
3452 | \end{verbatim} |
---|
3453 | |
---|
3454 | to a dictionary of polygons with \code{id} as key. |
---|
3455 | The associated number of \code{floors} are converted to m above MSL and |
---|
3456 | returned as a separate dictionary also keyed by \code{id}. |
---|
3457 | |
---|
3458 | Optional parameter \code{floor_height} is the height of each building story. |
---|
3459 | |
---|
3460 | These can e.g.\ be converted to a \code{Polygon_function} for use with \code{add_quantity} |
---|
3461 | as shown on page \pageref{add quantity}. |
---|
3462 | \end{funcdesc} |
---|
3463 | |
---|
3464 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
3465 | |
---|
3466 | \chapter{\anuga mathematical background} |
---|
3467 | \label{cd:mathematical background} |
---|
3468 | |
---|
3469 | |
---|
3470 | \section{Introduction} |
---|
3471 | |
---|
3472 | This chapter outlines the mathematics underpinning \anuga. |
---|
3473 | |
---|
3474 | |
---|
3475 | \section{Model} |
---|
3476 | \label{sec:model} |
---|
3477 | |
---|
3478 | The shallow water wave equations are a system of differential |
---|
3479 | conservation equations which describe the flow of a thin layer of |
---|
3480 | fluid over terrain. The form of the equations are: |
---|
3481 | \[ |
---|
3482 | \frac{\partial \UU}{\partial t}+\frac{\partial \EE}{\partial |
---|
3483 | x}+\frac{\partial \GG}{\partial y}=\SSS |
---|
3484 | \] |
---|
3485 | where $\UU=\left[ {{\begin{array}{*{20}c} |
---|
3486 | h & {uh} & {vh} \\ |
---|
3487 | \end{array} }} \right]^T$ is the vector of conserved quantities; water depth |
---|
3488 | $h$, $x$-momentum $uh$ and $y$-momentum $vh$. Other quantities |
---|
3489 | entering the system are bed elevation $z$ and stage (absolute water |
---|
3490 | level) $w$, where the relation $w = z + h$ holds true at all times. |
---|
3491 | The fluxes in the $x$ and $y$ directions, $\EE$ and $\GG$ are given |
---|
3492 | by |
---|
3493 | \[ |
---|
3494 | \EE=\left[ {{\begin{array}{*{20}c} |
---|
3495 | {uh} \hfill \\ |
---|
3496 | {u^2h+gh^2/2} \hfill \\ |
---|
3497 | {uvh} \hfill \\ |
---|
3498 | \end{array} }} \right]\mbox{ and }\GG=\left[ {{\begin{array}{*{20}c} |
---|
3499 | {vh} \hfill \\ |
---|
3500 | {vuh} \hfill \\ |
---|
3501 | {v^2h+gh^2/2} \hfill \\ |
---|
3502 | \end{array} }} \right] |
---|
3503 | \] |
---|
3504 | and the source term (which includes gravity and friction) is given |
---|
3505 | by |
---|
3506 | \[ |
---|
3507 | \SSS=\left[ {{\begin{array}{*{20}c} |
---|
3508 | 0 \hfill \\ |
---|
3509 | -{gh(z_{x} + S_{fx} )} \hfill \\ |
---|
3510 | -{gh(z_{y} + S_{fy} )} \hfill \\ |
---|
3511 | \end{array} }} \right] |
---|
3512 | \] |
---|
3513 | where $S_f$ is the bed friction. The friction term is modelled using |
---|
3514 | Manning's resistance law |
---|
3515 | \[ |
---|
3516 | S_{fx} =\frac{u\eta ^2\sqrt {u^2+v^2} }{h^{4/3}}\mbox{ and }S_{fy} |
---|
3517 | =\frac{v\eta ^2\sqrt {u^2+v^2} }{h^{4/3}} |
---|
3518 | \] |
---|
3519 | in which $\eta$ is the Manning resistance coefficient. |
---|
3520 | The model does not currently include consideration of kinematic viscosity or dispersion. |
---|
3521 | |
---|
3522 | As demonstrated in our papers, \cite{ZR1999,nielsen2005} these |
---|
3523 | equations and their implementation in \anuga provide a reliable |
---|
3524 | model of general flows associated with inundation such as dam breaks |
---|
3525 | and tsunamis. |
---|
3526 | |
---|
3527 | |
---|
3528 | \section{Finite Volume Method} |
---|
3529 | \label{sec:fvm} |
---|
3530 | |
---|
3531 | We use a finite-volume method for solving the shallow water wave |
---|
3532 | equations \cite{ZR1999}. The study area is represented by a mesh of |
---|
3533 | triangular cells as in Figure~\ref{fig:mesh} in which the conserved |
---|
3534 | quantities of water depth $h$, and horizontal momentum $(uh, vh)$, |
---|
3535 | in each volume are to be determined. The size of the triangles may |
---|
3536 | be varied within the mesh to allow greater resolution in regions of |
---|
3537 | particular interest. |
---|
3538 | |
---|
3539 | \begin{figure}[htp] \begin{center} |
---|
3540 | \includegraphics[width=8.0cm,keepaspectratio=true]{graphics/step-five} |
---|
3541 | \caption{Triangular mesh used in our finite volume method. Conserved |
---|
3542 | quantities $h$, $uh$ and $vh$ are associated with the centroid of |
---|
3543 | each triangular cell.} |
---|
3544 | \label{fig:mesh} |
---|
3545 | \end{center} \end{figure} |
---|
3546 | |
---|
3547 | The equations constituting the finite-volume method are obtained by |
---|
3548 | integrating the differential conservation equations over each |
---|
3549 | triangular cell of the mesh. Introducing some notation we use $i$ to |
---|
3550 | refer to the $i$th triangular cell $T_i$, and ${\cal N}(i)$ to the |
---|
3551 | set of indices referring to the cells neighbouring the $i$th cell. |
---|
3552 | Then $A_i$ is the area of the $i$th triangular cell and $l_{ij}$ is |
---|
3553 | the length of the edge between the $i$th and $j$th cells. |
---|
3554 | |
---|
3555 | By applying the divergence theorem we obtain for each volume an |
---|
3556 | equation which describes the rate of change of the average of the |
---|
3557 | conserved quantities within each cell, in terms of the fluxes across |
---|
3558 | the edges of the cells and the effect of the source terms. In |
---|
3559 | particular, rate equations associated with each cell have the form |
---|
3560 | $$ |
---|
3561 | \frac{d\UU_i }{dt}+ \frac1{A_i}\sum\limits_{j\in{\cal N}(i)} \HH_{ij} l_{ij} = \SSS_i |
---|
3562 | $$ |
---|
3563 | where |
---|
3564 | \begin{itemize} |
---|
3565 | \item $\UU_i$ the vector of conserved quantities averaged over the $i$th cell, |
---|
3566 | \item $\SSS_i$ is the source term associated with the $i$th cell, and |
---|
3567 | \item $\HH_{ij}$ is the outward normal flux of material across the \textit{ij}th edge. |
---|
3568 | \end{itemize} |
---|
3569 | |
---|
3570 | %\item $l_{ij}$ is the length of the edge between the $i$th and $j$th |
---|
3571 | %cells |
---|
3572 | %\item $m_{ij}$ is the midpoint of |
---|
3573 | %the \textit{ij}th edge, |
---|
3574 | %\item |
---|
3575 | %$\mathbf{n}_{ij} = (n_{ij,1} , n_{ij,2})$is the outward pointing |
---|
3576 | %normal along the \textit{ij}th edge, and The |
---|
3577 | |
---|
3578 | The flux $\HH_{ij}$ is evaluated using a numerical flux function |
---|
3579 | $\HH(\cdot, \cdot ; \ \cdot)$ which is consistent with the shallow |
---|
3580 | water flux in the sense that for all conservation vectors $\UU$ and normal vectors $\nn$ |
---|
3581 | $$ |
---|
3582 | H(\UU,\UU;\ \nn) = \EE(\UU) n_1 + \GG(\UU) n_2 . |
---|
3583 | $$ |
---|
3584 | |
---|
3585 | Then |
---|
3586 | $$ |
---|
3587 | \HH_{ij} = \HH(\UU_i(m_{ij}), |
---|
3588 | \UU_j(m_{ij}); \mathbf{n}_{ij}) |
---|
3589 | $$ |
---|
3590 | where $m_{ij}$ is the midpoint of the \textit{ij}th edge and |
---|
3591 | $\mathbf{n}_{ij}$ is the outward pointing normal, with respect to the $i$th cell, on the |
---|
3592 | \textit{ij}th edge. The function $\UU_i(x)$ for $x \in |
---|
3593 | T_i$ is obtained from the vector $\UU_k$ of conserved average values for the $i$th and |
---|
3594 | neighbouring cells. |
---|
3595 | |
---|
3596 | We use a second order reconstruction to produce a piece-wise linear |
---|
3597 | function construction of the conserved quantities for all $x \in |
---|
3598 | T_i$ for each cell (see Figure~\ref{fig:mesh:reconstruct}). This |
---|
3599 | function is allowed to be discontinuous across the edges of the |
---|
3600 | cells, but the slope of this function is limited to avoid |
---|
3601 | artificially introduced oscillations. |
---|
3602 | |
---|
3603 | Godunov's method (see \cite{Toro1992}) involves calculating the |
---|
3604 | numerical flux function $\HH(\cdot, \cdot ; \ \cdot)$ by exactly |
---|
3605 | solving the corresponding one dimensional Riemann problem normal to |
---|
3606 | the edge. We use the central-upwind scheme of \cite{KurNP2001} to |
---|
3607 | calculate an approximation of the flux across each edge. |
---|
3608 | |
---|
3609 | \begin{figure}[htp] \begin{center} |
---|
3610 | \includegraphics[width=8.0cm,keepaspectratio=true]{graphics/step-reconstruct} |
---|
3611 | \caption{From the values of the conserved quantities at the centroid |
---|
3612 | of the cell and its neighbouring cells, a discontinuous piecewise |
---|
3613 | linear reconstruction of the conserved quantities is obtained.} |
---|
3614 | \label{fig:mesh:reconstruct} |
---|
3615 | \end{center} \end{figure} |
---|
3616 | |
---|
3617 | In the computations presented in this paper we use an explicit Euler |
---|
3618 | time stepping method with variable timestepping adapted to the |
---|
3619 | observed CFL condition: |
---|
3620 | |
---|
3621 | \begin{equation} |
---|
3622 | \Delta t = \min_{k,i=[0,1,2]} \min \left( \frac{r_k}{v_{k,i}}, \frac{r_{n_{k,i}}}{v_{k,i}} \right ) |
---|
3623 | \label{eq:CFL condition} |
---|
3624 | \end{equation} |
---|
3625 | where $r_k$ is the radius of the $k$'th triangle and $v_{k,i}$ is the maximal velocity across |
---|
3626 | edge joining triangle $k$ and it's $i$'th neighbour, triangle $n_{k,i}$, as calculated by the |
---|
3627 | numerical flux function |
---|
3628 | using the central upwind scheme of \cite{KurNP2001}. The symbol $r_{n_{k,i}}$ denotes the radius |
---|
3629 | of the $i$'th neighbour of triangle $k$. The radii are calculated as radii of the inscribed circles |
---|
3630 | of each triangle. |
---|
3631 | |
---|
3632 | |
---|
3633 | \section{Flux limiting} |
---|
3634 | |
---|
3635 | The shallow water equations are solved numerically using a |
---|
3636 | finite volume method on an unstructured triangular grid. |
---|
3637 | The upwind central scheme due to Kurganov and Petrova is used as an |
---|
3638 | approximate Riemann solver for the computation of inviscid flux functions. |
---|
3639 | This makes it possible to handle discontinuous solutions. |
---|
3640 | |
---|
3641 | To alleviate the problems associated with numerical instabilities due to |
---|
3642 | small water depths near a wet/dry boundary we employ a new flux limiter that |
---|
3643 | ensures that unphysical fluxes are never encounted. |
---|
3644 | |
---|
3645 | Let $u$ and $v$ be the velocity components in the $x$ and $y$ direction, |
---|
3646 | $w$ the absolute water level (stage) and |
---|
3647 | $z$ the bed elevation. The latter are assumed to be relative to the |
---|
3648 | same height datum. |
---|
3649 | The conserved quantities tracked by \anuga are momentum in the |
---|
3650 | $x$-direction ($\mu = uh$), momentum in the $y$-direction ($\nu = vh$) |
---|
3651 | and depth ($h = w-z$). |
---|
3652 | |
---|
3653 | The flux calculation requires access to the velocity vector $(u, v)$ |
---|
3654 | where each component is obtained as $u = \mu/h$ and $v = \nu/h$ respectively. |
---|
3655 | In the presence of very small water depths, these calculations become |
---|
3656 | numerically unreliable and will typically cause unphysical speeds. |
---|
3657 | |
---|
3658 | We have employed a flux limiter which replaces the calculations above with |
---|
3659 | the limited approximations. |
---|
3660 | \begin{equation} |
---|
3661 | \hat{u} = \frac{\mu}{h + h_0/h}, \bigskip \hat{v} = \frac{\nu}{h + h_0/h}, |
---|
3662 | \end{equation} |
---|
3663 | where $h_0$ is a regularisation parameter that controls the minimal |
---|
3664 | magnitude of the denominator. Taking the limits we have for $\hat{u}$ |
---|
3665 | \[ |
---|
3666 | \lim_{h \rightarrow 0} \hat{u} = |
---|
3667 | \lim_{h \rightarrow 0} \frac{\mu}{h + h_0/h} = 0 |
---|
3668 | \] |
---|
3669 | and |
---|
3670 | \[ |
---|
3671 | \lim_{h \rightarrow \infty} \hat{u} = |
---|
3672 | \lim_{h \rightarrow \infty} \frac{\mu}{h + h_0/h} = \frac{\mu}{h} = u |
---|
3673 | \] |
---|
3674 | with similar results for $\hat{v}$. |
---|
3675 | |
---|
3676 | The maximal value of $\hat{u}$ is attained when $h+h_0/h$ is minimal or (by differentiating the denominator) |
---|
3677 | \[ |
---|
3678 | 1 - h_0/h^2 = 0 |
---|
3679 | \] |
---|
3680 | or |
---|
3681 | \[ |
---|
3682 | h_0 = h^2 |
---|
3683 | \] |
---|
3684 | |
---|
3685 | \anuga has a global parameter $H_0$ that controls the minimal depth which |
---|
3686 | is considered in the various equations. This parameter is typically set to |
---|
3687 | $10^{-3}$. Setting |
---|
3688 | \[ |
---|
3689 | h_0 = H_0^2 |
---|
3690 | \] |
---|
3691 | provides a reasonable balance between accurracy and stability. In fact, |
---|
3692 | setting $h=H_0$ will scale the predicted speed by a factor of $0.5$: |
---|
3693 | \[ |
---|
3694 | \left[ \frac{\mu}{h + h_0/h} \right]_{h = H_0} = |
---|
3695 | \left[ \frac{\mu}{H_0 + H_0^2/H_0} \right] = |
---|
3696 | \frac{\mu}{2 H_0} = \frac{\mu}{2 h} = \frac{u}{2} |
---|
3697 | \] |
---|
3698 | In general, for multiples of the minimal depth $N H_0$ one obtains |
---|
3699 | \begin{equation} |
---|
3700 | \left[ \frac{\mu}{h + h_0/h} \right]_{h = N H_0} = |
---|
3701 | \frac{\mu}{N H_0 + H_0/N} = |
---|
3702 | \frac{\mu}{h (1 + 1/N^2)} |
---|
3703 | \label{eq:flux limit multiple} |
---|
3704 | \end{equation} |
---|
3705 | which converges quadratically to the true value with the multiple N. |
---|
3706 | |
---|
3707 | Although this equation can be used for any depth, we have restricted its use to depths less than $10 * H_0$ (or 1 cm) to computational resources. |
---|
3708 | According to Equation \ref{eq:flux limit multiple} this cutoff |
---|
3709 | affects the calculated velocity by less than 1 \%. |
---|
3710 | |
---|
3711 | %The developed numerical model has been applied to several test cases |
---|
3712 | %as well as to real flows. numeric tests prove the robustness and accuracy of the model. |
---|
3713 | |
---|
3714 | |
---|
3715 | \section{Slope limiting} |
---|
3716 | A multidimensional slope-limiting technique is employed to achieve second-order spatial |
---|
3717 | accuracy and to prevent spurious oscillations. This is using the MinMod limiter and is |
---|
3718 | documented elsewhere. |
---|
3719 | |
---|
3720 | However close to the bed, the limiter must ensure that no negative depths occur. |
---|
3721 | On the other hand, in deep water, the bed topography should be ignored for the |
---|
3722 | purpose of the limiter. |
---|
3723 | |
---|
3724 | Let $w, z, h$ be the stage, bed elevation and depth at the centroid and |
---|
3725 | let $w_i, z_i, h_i$ be the stage, bed elevation and depth at vertex $i$. |
---|
3726 | Define the minimal depth across all vertices as $\hmin$ as |
---|
3727 | \[ |
---|
3728 | \hmin = \min_i h_i |
---|
3729 | \] |
---|
3730 | |
---|
3731 | Let $\tilde{w_i}$ be the stage obtained from a gradient limiter |
---|
3732 | limiting on stage only. The corresponding depth is then defined as |
---|
3733 | \[ |
---|
3734 | \tilde{h_i} = \tilde{w_i} - z_i |
---|
3735 | \] |
---|
3736 | We would use this limiter in deep water which we will define (somewhat boldly) |
---|
3737 | as |
---|
3738 | \[ |
---|
3739 | \hmin \ge \epsilon |
---|
3740 | \] |
---|
3741 | |
---|
3742 | Similarly, let $\bar{w_i}$ be the stage obtained from a gradient |
---|
3743 | limiter limiting on depth respecting the bed slope. |
---|
3744 | The corresponding depth is defined as |
---|
3745 | \[ |
---|
3746 | \bar{h_i} = \bar{w_i} - z_i |
---|
3747 | \] |
---|
3748 | |
---|
3749 | We introduce the concept of a balanced stage $w_i$ which is obtained as |
---|
3750 | the linear combination |
---|
3751 | |
---|
3752 | \[ |
---|
3753 | w_i = \alpha \tilde{w_i} + (1-\alpha) \bar{w_i} |
---|
3754 | \] |
---|
3755 | or |
---|
3756 | \[ |
---|
3757 | w_i = z_i + \alpha \tilde{h_i} + (1-\alpha) \bar{h_i} |
---|
3758 | \] |
---|
3759 | where $\alpha \in [0, 1]$. |
---|
3760 | |
---|
3761 | Since $\tilde{w_i}$ is obtained in 'deep' water where the bedslope |
---|
3762 | is ignored we have immediately that |
---|
3763 | \[ |
---|
3764 | \alpha = 1 \mbox{ for } \hmin \ge \epsilon %or dz=0 |
---|
3765 | \] |
---|
3766 | %where the maximal bed elevation range $dz$ is defined as |
---|
3767 | %\[ |
---|
3768 | % dz = \max_i |z_i - z| |
---|
3769 | %\] |
---|
3770 | |
---|
3771 | If $\hmin < \epsilon$ we want to use the 'shallow' limiter just enough that |
---|
3772 | no negative depths occur. Formally, we will require that |
---|
3773 | \[ |
---|
3774 | \alpha \tilde{h_i} + (1-\alpha) \bar{h_i} > \epsilon, \forall i |
---|
3775 | \] |
---|
3776 | or |
---|
3777 | \begin{equation} |
---|
3778 | \alpha(\tilde{h_i} - \bar{h_i}) > \epsilon - \bar{h_i}, \forall i |
---|
3779 | \label{eq:limiter bound} |
---|
3780 | \end{equation} |
---|
3781 | |
---|
3782 | There are two cases: |
---|
3783 | \begin{enumerate} |
---|
3784 | \item $\bar{h_i} \le \tilde{h_i}$: The deep water (limited using stage) |
---|
3785 | vertex is at least as far away from the bed than the shallow water |
---|
3786 | (limited using depth). In this case we won't need any contribution from |
---|
3787 | $\bar{h_i}$ and can accept any $\alpha$. |
---|
3788 | |
---|
3789 | E.g.\ $\alpha=1$ reduces Equation \ref{eq:limiter bound} to |
---|
3790 | \[ |
---|
3791 | \tilde{h_i} > \epsilon |
---|
3792 | \] |
---|
3793 | whereas $\alpha=0$ yields |
---|
3794 | \[ |
---|
3795 | \bar{h_i} > \epsilon |
---|
3796 | \] |
---|
3797 | all well and good. |
---|
3798 | \item $\bar{h_i} > \tilde{h_i}$: In this case the the deep water vertex is |
---|
3799 | closer to the bed than the shallow water vertex or even below the bed. |
---|
3800 | In this case we need to find an $\alpha$ that will ensure a positive depth. |
---|
3801 | Rearranging Equation \ref{eq:limiter bound} and solving for $\alpha$ one |
---|
3802 | obtains the bound |
---|
3803 | \[ |
---|
3804 | \alpha < \frac{\epsilon - \bar{h_i}}{\tilde{h_i} - \bar{h_i}}, \forall i |
---|
3805 | \] |
---|
3806 | \end{enumerate} |
---|
3807 | |
---|
3808 | Ensuring Equation \ref{eq:limiter bound} holds true for all vertices one |
---|
3809 | arrives at the definition |
---|
3810 | \[ |
---|
3811 | \alpha = \min_{i} \frac{\bar{h_i} - \epsilon}{\bar{h_i} - \tilde{h_i}} |
---|
3812 | \] |
---|
3813 | which will guarantee that no vertex 'cuts' through the bed. Finally, should |
---|
3814 | $\bar{h_i} < \epsilon$ and therefore $\alpha < 0$, we suggest setting |
---|
3815 | $\alpha=0$ and similarly capping $\alpha$ at 1 just in case. |
---|
3816 | |
---|
3817 | %Furthermore, |
---|
3818 | %dropping the $\epsilon$ ensures that alpha is always positive and also |
---|
3819 | %provides a numerical safety {??) |
---|
3820 | |
---|
3821 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
3822 | |
---|
3823 | \chapter{Basic \anuga Assumptions} |
---|
3824 | |
---|
3825 | |
---|
3826 | \section{Time} |
---|
3827 | |
---|
3828 | Physical model time cannot be earlier than 1 Jan 1970 00:00:00. |
---|
3829 | If one wished to recreate scenarios prior to that date it must be done |
---|
3830 | using some relative time (e.g.\ 0). |
---|
3831 | |
---|
3832 | The \anuga domain has an attribute \code{starttime} which is used in cases where the |
---|
3833 | simulation should be started later than the beginning of some input data such as those |
---|
3834 | obtained from boundaries or forcing functions (hydrographs, file_boundary etc). |
---|
3835 | |
---|
3836 | The \code{domain.startime} may be adjusted in \code{file_boundary} in the case the |
---|
3837 | input data does not itself start until a later time. |
---|
3838 | |
---|
3839 | |
---|
3840 | \section{Spatial data} |
---|
3841 | |
---|
3842 | \subsection{Projection} |
---|
3843 | All spatial data relates to the WGS84 datum (or GDA94) and assumes a projection |
---|
3844 | into UTM with false easting of 500000 and false northing of |
---|
3845 | 1000000 on the southern hemisphere (0 on the northern hemisphere). |
---|
3846 | All locations must consequently be specified in Cartesian coordinates |
---|
3847 | (eastings, northings) or (x,y) where the unit is metres. |
---|
3848 | Alternative projections can be used, but \anuga does have the concept of a UTM zone |
---|
3849 | that must be the same for all coordinates in the model. |
---|
3850 | |
---|
3851 | \subsection{Internal coordinates} |
---|
3852 | It is important to realise that for numerical precision \anuga uses coordinates that are relative |
---|
3853 | to the lower left node of the rectangle containing the mesh ($x_{\mbox{min}}$, $y_{\mbox{min}}$). |
---|
3854 | This origin is referred to internally as \code{xllcorner}, \code{yllcorner} following the ESRI ASCII grid notation. |
---|
3855 | The SWW file format also includes \code{xllcorner}, \code{yllcorner} and any coordinate in the file should be adjusted |
---|
3856 | by adding this origin. See Section \ref{sec:sww format}. |
---|
3857 | |
---|
3858 | Throughout the \anuga interface, functions have optional boolean arguments \code{absolute} which controls |
---|
3859 | whether spatial data received is using the internal representation (\code{absolute=False}) or the |
---|
3860 | user coordinate set (\code{absolute=True}). See e.g.\ \code{get_vertex_coordinates()} on \pageref{pg:get vertex coordinates}. |
---|
3861 | |
---|
3862 | DEMs, meshes and boundary conditions can have different origins. However, the internal representation in \anuga |
---|
3863 | will use the origin of the mesh. |
---|
3864 | |
---|
3865 | \subsection{Polygons} |
---|
3866 | When generating a mesh it is assumed that polygons do not cross. |
---|
3867 | Having polygons that cross can cause bad meshes to be produced or the mesh generation itself may fail. |
---|
3868 | |
---|
3869 | %OLD |
---|
3870 | %The dataflow is: (See data_manager.py and from scenarios) |
---|
3871 | % |
---|
3872 | % |
---|
3873 | %Simulation scenarios |
---|
3874 | %--------------------% |
---|
3875 | %% |
---|
3876 | % |
---|
3877 | %Sub directories contain scrips and derived files for each simulation. |
---|
3878 | %The directory ../source_data contains large source files such as |
---|
3879 | %DEMs provided externally as well as MOST tsunami simulations to be used |
---|
3880 | %as boundary conditions. |
---|
3881 | % |
---|
3882 | %Manual steps are: |
---|
3883 | % Creation of DEMs from argcview (.asc + .prj) |
---|
3884 | % Creation of mesh from pmesh (.tsh) |
---|
3885 | % Creation of tsunami simulations from MOST (.nc) |
---|
3886 | %% |
---|
3887 | % |
---|
3888 | %Typical scripted steps are% |
---|
3889 | % |
---|
3890 | % prepare_dem.py: Convert asc and prj files supplied by arcview to |
---|
3891 | % native dem and pts formats% |
---|
3892 | % |
---|
3893 | % prepare_pts.py: Convert netcdf output from MOST to an SWW file suitable |
---|
3894 | % as boundary condition% |
---|
3895 | % |
---|
3896 | % prepare_mesh.py: Merge DEM (pts) and mesh (tsh) using least squares |
---|
3897 | % smoothing. The outputs are tsh files with elevation data.% |
---|
3898 | % |
---|
3899 | % run_simulation.py: Use the above together with various parameters to |
---|
3900 | % run inundation simulation. |
---|
3901 | |
---|
3902 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
3903 | |
---|
3904 | \appendix |
---|
3905 | |
---|
3906 | |
---|
3907 | \chapter{Supporting Tools} |
---|
3908 | \label{ch:supportingtools} |
---|
3909 | |
---|
3910 | This section describes a number of supporting tools, supplied with \anuga, that offer a |
---|
3911 | variety of types of functionality and can enhance the basic capabilities of \anuga. |
---|
3912 | |
---|
3913 | |
---|
3914 | \section{caching} |
---|
3915 | \label{sec:caching} |
---|
3916 | |
---|
3917 | The \code{cache} function is used to provide supervised caching of function |
---|
3918 | results. A Python function call of the form: |
---|
3919 | |
---|
3920 | \begin{verbatim} |
---|
3921 | result = func(arg1, ..., argn) |
---|
3922 | \end{verbatim} |
---|
3923 | |
---|
3924 | can be replaced by: |
---|
3925 | |
---|
3926 | \begin{verbatim} |
---|
3927 | from caching import cache |
---|
3928 | result = cache(func,(arg1, ..., argn)) |
---|
3929 | \end{verbatim} |
---|
3930 | |
---|
3931 | which returns the same output but reuses cached |
---|
3932 | results if the function has been computed previously in the same context. |
---|
3933 | \code{result} and the arguments can be simple types, tuples, list, dictionaries or |
---|
3934 | objects, but not unhashable types such as functions or open file objects. |
---|
3935 | The function \code{func} may be a member function of an object or a module. |
---|
3936 | |
---|
3937 | This type of caching is particularly useful for computationally intensive |
---|
3938 | functions with few frequently used combinations of input arguments. Note that |
---|
3939 | if the inputs or output are very large caching may not save time because |
---|
3940 | disc access may dominate the execution time. |
---|
3941 | |
---|
3942 | If the function definition changes after a result has been cached, this will be |
---|
3943 | detected by examining the functions bytecode and the function will be recomputed. |
---|
3944 | However, caching will not detect changes in modules used by \code{func}. |
---|
3945 | In this case the cache must be cleared manually. |
---|
3946 | |
---|
3947 | Options are set by means of the function \code{set_option(key, value)}, |
---|
3948 | where \code{key} is a key associated with a |
---|
3949 | Python dictionary \code{options}. This dictionary stores settings such as the name of |
---|
3950 | the directory used, the maximum number of cached files allowed, and so on. |
---|
3951 | |
---|
3952 | The \code{cache} function allows the user also to specify a list of dependent files. If any of these |
---|
3953 | have been changed, the function is recomputed and the results stored again. |
---|
3954 | |
---|
3955 | %Other features include support for compression and a capability to \ldots |
---|
3956 | |
---|
3957 | USAGE: \nopagebreak |
---|
3958 | |
---|
3959 | \begin{verbatim} |
---|
3960 | result = cache(func, args, kwargs, dependencies, cachedir, verbose, |
---|
3961 | compression, evaluate, test, return_filename) |
---|
3962 | \end{verbatim} |
---|
3963 | |
---|
3964 | |
---|
3965 | |
---|
3966 | \pagebreak |
---|
3967 | \section{anuga\_viewer} |
---|
3968 | \label{sec:animate} |
---|
3969 | |
---|
3970 | The output generated by \anuga may be viewed by |
---|
3971 | means of the visualisation tool \code{anuga\_viewer}, which takes an |
---|
3972 | SWW file generated by \anuga and creates a visual representation |
---|
3973 | of the data. Examples may be seen in Figures \ref{fig:runupstart} |
---|
3974 | and \ref{fig:runup2}. To view an SWW file with |
---|
3975 | \code{anuga\_viewer} in the Windows environment you have to run it in a command line as in |
---|
3976 | \begin{verbatim} |
---|
3977 | anuga_viewer <swwfile> |
---|
3978 | \end{verbatim} |
---|
3979 | |
---|
3980 | or if a georeferenced tif file (or jpg cut to the same shape as the domain) is needed |
---|
3981 | |
---|
3982 | \begin{verbatim} |
---|
3983 | anuga_viewer <swwfile> <tif file> |
---|
3984 | \end{verbatim} |
---|
3985 | |
---|
3986 | %, you can simply drag the |
---|
3987 | %icon representing the file over an icon on the desktop for the |
---|
3988 | %\code{anuga\_viewer} executable file (or a shortcut to it), or set up a |
---|
3989 | %file association to make files with the extension \code{.sww} open |
---|
3990 | %with \code{animate}. Alternatively, you can operate \code{animate} |
---|
3991 | %from the command line. |
---|
3992 | |
---|
3993 | |
---|
3994 | |
---|
3995 | |
---|
3996 | %% \pagebreak |
---|
3997 | %% \section{\anuga viewer -- animate} |
---|
3998 | %% \label{sec:animate} |
---|
3999 | |
---|
4000 | %% The output generated by \anuga may be viewed by |
---|
4001 | %% means of the visualisation tool \code{animate}, which takes an |
---|
4002 | %% SWW file generated by \anuga and creates a visual representation |
---|
4003 | %% of the data. Examples may be seen in Figures \ref{fig:runupstart} |
---|
4004 | %% and \ref{fig:runup2}. To view an SWW file with |
---|
4005 | %% \code{animate} in the Windows environment, you can simply drag the |
---|
4006 | %% icon representing the file over an icon on the desktop for the |
---|
4007 | %% \code{animate} executable file (or a shortcut to it), or set up a |
---|
4008 | %% file association to make files with the extension \code{.sww} open |
---|
4009 | %% with \code{animate}. Alternatively, you can operate \code{animate} |
---|
4010 | %% from the command line. |
---|
4011 | |
---|
4012 | %% Upon starting the viewer, you will see an interactive moving-picture |
---|
4013 | %% display. You can use the keyboard and mouse to slow down, speed up or |
---|
4014 | %% stop the display, change the viewing position or carry out a number |
---|
4015 | %% of other simple operations. Help is also displayed when you press |
---|
4016 | %% the \code{h} key. |
---|
4017 | |
---|
4018 | %% The main keys operating the interactive screen are: |
---|
4019 | %% \begin{center} |
---|
4020 | %% \begin{tabular}{|ll|} \hline |
---|
4021 | %% \code{h} & toggle on-screen help display \\ |
---|
4022 | %% \code{w} & toggle wireframe \\ |
---|
4023 | %% space bar & start/stop\\ |
---|
4024 | %% up/down arrows & increase/decrease speed\\ |
---|
4025 | %% left/right arrows & direction in time \emph{(when running)}\\ |
---|
4026 | %% & step through simulation \emph{(when stopped)}\\ |
---|
4027 | %% left mouse button & rotate\\ |
---|
4028 | %% middle mouse button & pan\\ |
---|
4029 | %% right mouse button & zoom\\ \hline |
---|
4030 | %% \end{tabular} |
---|
4031 | %% \end{center} |
---|
4032 | |
---|
4033 | %% % \vfill |
---|
4034 | |
---|
4035 | %% The following describes how to operate \code{animate} from the command line: |
---|
4036 | |
---|
4037 | %% Usage: \code{animate [options] swwfile \ldots}\\ \nopagebreak |
---|
4038 | %% where: \\ \nopagebreak |
---|
4039 | %% \begin{tabular}{ll} |
---|
4040 | %% \code{--display <type>} & \code{MONITOR | POWERWALL | REALITY\_CENTER |}\\ |
---|
4041 | %% & \code{HEAD\_MOUNTED\_DISPLAY}\\ |
---|
4042 | %% \code{--rgba} & Request a RGBA colour buffer visual\\ |
---|
4043 | %% \code{--stencil} & Request a stencil buffer visual\\ |
---|
4044 | %% \code{--stereo} & Use default stereo mode which is \code{ANAGLYPHIC} if not \\ |
---|
4045 | %% & overridden by environmental variable\\ |
---|
4046 | %% \code{--stereo <mode>} & \code{ANAGLYPHIC | QUAD\_BUFFER | HORIZONTAL\_SPLIT |}\\ |
---|
4047 | %% & \code{VERTICAL\_SPLIT | LEFT\_EYE | RIGHT\_EYE |}\\ |
---|
4048 | %% & \code{ON | OFF} \\ |
---|
4049 | %% \code{-alphamax <float 0-1>} & Maximum transparency clamp value\\ |
---|
4050 | %% \code{-alphamin <float 0-1>} & Transparency value at \code{hmin}\\ |
---|
4051 | %% \code{-cullangle <float angle 0-90>} & Cull triangles steeper than this value\\ |
---|
4052 | %% \code{-help} & Display this information\\ |
---|
4053 | %% \code{-hmax <float>} & Height above which transparency is set to |
---|
4054 | %% \code{alphamax}\\ |
---|
4055 | %% \code{-hmin <float>} & Height below which transparency is set to |
---|
4056 | %% zero\\ |
---|
4057 | %% \code{-lightpos <float>,<float>,<float>} & $x,y,z$ of bedslope directional light ($z$ is |
---|
4058 | %% up, default is overhead)\\ |
---|
4059 | %% \code{-loop} & Repeated (looped) playback of \code{.swm} files\\ |
---|
4060 | %% \code{-movie <dirname>} & Save numbered images to named directory and |
---|
4061 | %% quit\\ |
---|
4062 | %% \code{-nosky} & Omit background sky\\ |
---|
4063 | %% \code{-scale <float>} & Vertical scale factor\\ |
---|
4064 | %% \code{-texture <file>} & Image to use for bedslope topography\\ |
---|
4065 | %% \code{-tps <rate>} & Timesteps per second\\ |
---|
4066 | %% \code{-version} & Revision number and creation (not compile) |
---|
4067 | %% date\\ |
---|
4068 | %% \end{tabular} |
---|
4069 | |
---|
4070 | |
---|
4071 | \pagebreak |
---|
4072 | \section{utilities/polygons} |
---|
4073 | |
---|
4074 | \declaremodule{standard}{utilities.polygon} |
---|
4075 | \refmodindex{utilities.polygon} |
---|
4076 | |
---|
4077 | \begin{classdesc}{<callable> = Polygon_function}{regions, |
---|
4078 | default=0.0, |
---|
4079 | geo_reference=None} |
---|
4080 | Module: \code{utilities.polygon} |
---|
4081 | |
---|
4082 | Creates a callable object that returns one of a specified list of values when |
---|
4083 | evaluated at a point \code{(x, y)}, depending on which polygon, from a specified list of polygons, the |
---|
4084 | point belongs to. |
---|
4085 | |
---|
4086 | \code{regions} is a list of pairs |
---|
4087 | \code{(P, v)}, where each \code{P} is a polygon and each \code{v} |
---|
4088 | is either a constant value or a function of coordinates \code{x} |
---|
4089 | and \code{y}, specifying the return value for a point inside \code{P}. |
---|
4090 | |
---|
4091 | \code{default} may be used to specify a value (or a function) |
---|
4092 | for a point not lying inside any of the specified polygons. |
---|
4093 | |
---|
4094 | When a point lies in more than one polygon, the return value is taken to |
---|
4095 | be the value for whichever of these polygon appears later in the list. |
---|
4096 | |
---|
4097 | %FIXME (Howard): CAN x, y BE VECTORS? |
---|
4098 | |
---|
4099 | \code{geo_reference} refers to the status of points |
---|
4100 | that are passed into the function. Typically they will be relative to |
---|
4101 | some origin. |
---|
4102 | |
---|
4103 | Typical usage may take the form: |
---|
4104 | |
---|
4105 | \begin{verbatim} |
---|
4106 | set_quantity('elevation', |
---|
4107 | Polygon_function([(P1, v1), (P2, v2)], |
---|
4108 | default=v3, |
---|
4109 | geo_reference=domain.geo_reference)) |
---|
4110 | \end{verbatim} |
---|
4111 | \end{classdesc} |
---|
4112 | |
---|
4113 | \begin{funcdesc}{<polygon> = read_polygon}{filename, split=','} |
---|
4114 | Module: \code{utilities.polygon} |
---|
4115 | |
---|
4116 | Reads the specified file and returns a polygon. |
---|
4117 | Each line of the file must contain exactly two numbers, separated by a delimiter, which are interpreted |
---|
4118 | as coordinates of one vertex of the polygon. |
---|
4119 | |
---|
4120 | \code{filename} is the path to the file to read. |
---|
4121 | |
---|
4122 | \code{split} sets the delimiter character between the numbers on one line of |
---|
4123 | the file. If not specified, the delimiter is the ',' character. |
---|
4124 | \end{funcdesc} |
---|
4125 | |
---|
4126 | \label{ref:function_populate_polygon} |
---|
4127 | \begin{funcdesc}{populate_polygon}{polygon, number_of_points, seed=None, exclude=None} |
---|
4128 | Module: \code{utilities.polygon} |
---|
4129 | |
---|
4130 | Populates the interior of the specified polygon with the specified number of points, |
---|
4131 | selected by means of a uniform distribution function. |
---|
4132 | |
---|
4133 | \code{polygon} is the polygon to populate. |
---|
4134 | |
---|
4135 | \code{number_of_points} is the (optional) number of points. |
---|
4136 | |
---|
4137 | \code{seed}is the optional seed for random number generator. |
---|
4138 | |
---|
4139 | \code{exclude} is a list of polygons (inside main polygon) from where points should be excluded. |
---|
4140 | \end{funcdesc} |
---|
4141 | |
---|
4142 | \label{ref:function_point_in_polygon} |
---|
4143 | \begin{funcdesc}{<point> = point_in_polygon}{polygon, delta=1e-8} |
---|
4144 | Module: \code{utilities.polygon} |
---|
4145 | |
---|
4146 | Returns a point inside the specified polygon and close to the edge. The distance between |
---|
4147 | the returned point and the nearest point of the polygon is less than $\sqrt{2}$ times the |
---|
4148 | second argument \code{delta}, which is taken as $10^{-8}$ by default. |
---|
4149 | \end{funcdesc} |
---|
4150 | |
---|
4151 | \label{ref:function_inside_polygon} |
---|
4152 | \begin{funcdesc}{<array> = inside_polygon}{points, polygon, closed=True, verbose=False} |
---|
4153 | Module: \code{utilities.polygon} |
---|
4154 | |
---|
4155 | Get a set of points that lie inside a given polygon. |
---|
4156 | |
---|
4157 | \code{points} is the list of points to test. |
---|
4158 | |
---|
4159 | \code{polygon} is the polygon to test the points against. |
---|
4160 | |
---|
4161 | \code{closed} specifies if points on the polygon edge are considered to be inside |
---|
4162 | or outside the polygon -- \code{True} means they are inside. |
---|
4163 | |
---|
4164 | Returns a numeric array comprising the indices of the points in the list |
---|
4165 | that lie inside the polygon. If none of the points are inside, returns |
---|
4166 | \code{zeros((0,), 'l') (ie, an empty numeric array)}. |
---|
4167 | |
---|
4168 | Compare with \code{outside_polygon()}, page \pageref{ref:function_outside_polygon}. |
---|
4169 | \end{funcdesc} |
---|
4170 | |
---|
4171 | \label{ref:function_outside_polygon} |
---|
4172 | \begin{funcdesc}{<array> = outside_polygon}{points, polygon, closed=True, verbose=False} |
---|
4173 | Module: \code{utilities.polygon} |
---|
4174 | |
---|
4175 | Get a set of points that lie outside a given polygon. |
---|
4176 | |
---|
4177 | \code{points} is the list of points to test. |
---|
4178 | |
---|
4179 | \code{polygon} is the polygon to test the points against. |
---|
4180 | |
---|
4181 | \code{closed} specifies if points on the polygon edge are considered to be outside |
---|
4182 | or inside the polygon -- \code{True} means they are outside. |
---|
4183 | |
---|
4184 | Returns a numeric array comprising the indices of the points in the list |
---|
4185 | that lie outside the polygon. If none of the points are outside, returns |
---|
4186 | \code{zeros((0,), 'l')} (ie, an empty numeric array). |
---|
4187 | |
---|
4188 | Compare with \code{inside_polygon()}, page \pageref{ref:function_inside_polygon}. |
---|
4189 | \end{funcdesc} |
---|
4190 | |
---|
4191 | \label{ref:function_is_inside_polygon} |
---|
4192 | \begin{funcdesc}{<boolean> = is_inside_polygon}{point, polygon, closed=True, verbose=False} |
---|
4193 | Module: \code{utilities.polygon} |
---|
4194 | |
---|
4195 | Determines if a single point is inside a polygon. |
---|
4196 | |
---|
4197 | \code{point} is the point to test. |
---|
4198 | |
---|
4199 | \code{polygon} is the polygon to test \code{point} against. |
---|
4200 | |
---|
4201 | \code{closed} is a flag that forces the function to consider a point on the polygon |
---|
4202 | edge to be inside or outside -- if \code{True} a point on the edge is considered inside the |
---|
4203 | polygon. |
---|
4204 | |
---|
4205 | Returns \code{True} if \code{point} is inside \code{polygon}. |
---|
4206 | |
---|
4207 | Compare with \code{inside_polygon()}, page \pageref{ref:function_inside_polygon}. |
---|
4208 | \end{funcdesc} |
---|
4209 | |
---|
4210 | \label{ref:function_is_outside_polygon} |
---|
4211 | \begin{funcdesc}{<boolean> = is_outside_polygon}{point, polygon, closed=True, verbose=False, |
---|
4212 | % points_geo_ref=None, polygon_geo_ref=None |
---|
4213 | } |
---|
4214 | Module: \code{utilities.polygon} |
---|
4215 | |
---|
4216 | Determines if a single point is outside a polygon. |
---|
4217 | |
---|
4218 | \code{point} is the point to test. |
---|
4219 | |
---|
4220 | \code{polygon} is the polygon to test \code{point} against. |
---|
4221 | |
---|
4222 | \code{closed} is a flag that forces the function to consider a point on the polygon |
---|
4223 | edge to be outside or inside -- if \code{True} a point on the edge is considered inside the |
---|
4224 | polygon. |
---|
4225 | |
---|
4226 | %\code{points_geo_ref} is ?? |
---|
4227 | % |
---|
4228 | %\code{polygon_geo_ref} is ?? |
---|
4229 | |
---|
4230 | Compare with \code{outside_polygon()}, page \pageref{ref:function_outside_polygon}. |
---|
4231 | \end{funcdesc} |
---|
4232 | |
---|
4233 | \label{ref:function_point_on_line} |
---|
4234 | \begin{funcdesc}{<boolean> = point_on_line}{point, line, rtol=1.0e-5, atol=1.0e-8} |
---|
4235 | Module: \code{utilities.polygon} |
---|
4236 | |
---|
4237 | Determine if a point is on a line to some tolerance. The line is considered to |
---|
4238 | extend past its end-points. |
---|
4239 | |
---|
4240 | \code{point} is the point to test ([$x$, $y$]). |
---|
4241 | |
---|
4242 | \code{line} is the line to test \code{point} against ([[$x1$,$y1$], [$x2$,$y2$]]). |
---|
4243 | |
---|
4244 | \code{rtol} is the relative tolerance to use when testing for coincidence. |
---|
4245 | |
---|
4246 | \code{atol} is the absolute tolerance to use when testing for coincidence. |
---|
4247 | |
---|
4248 | Returns \code{True} if the point is on the line, else \code{False}. |
---|
4249 | \end{funcdesc} |
---|
4250 | |
---|
4251 | \label{ref:function_separate_points_by_polygon} |
---|
4252 | \begin{funcdesc}{(indices, count) = separate_points_by_polygon}{points, polygon, |
---|
4253 | closed=True, |
---|
4254 | check_input=True, |
---|
4255 | verbose=False} |
---|
4256 | \indexedcode{separate_points_by_polygon} |
---|
4257 | Module: \code{utilities.polygon} |
---|
4258 | |
---|
4259 | Separate a set of points into points that are inside and outside a polygon. |
---|
4260 | |
---|
4261 | \code{points} is a list of points to separate. |
---|
4262 | |
---|
4263 | \code{polygon} is the polygon used to separate the points. |
---|
4264 | |
---|
4265 | \code{closed} determines whether points on the polygon edge should be |
---|
4266 | regarded as inside or outside the polygon. \code{True} means they are inside. |
---|
4267 | |
---|
4268 | \code{check_input} specifies whether the input parameters are checked -- \code{True} |
---|
4269 | means check the input parameters. |
---|
4270 | |
---|
4271 | The function returns a tuple \code{(indices, count)} where \code{indices} is a list of |
---|
4272 | point $indices$ from the input \code{points} list, with the indices of points inside the |
---|
4273 | polygon at the left and indices of points outside the polygon listed at the right. The |
---|
4274 | \code{count} value is the count (from the left) of the indices of the points $inside$ the |
---|
4275 | polygon. |
---|
4276 | \end{funcdesc} |
---|
4277 | |
---|
4278 | \begin{funcdesc}{<area> = polygon_area}{polygon} |
---|
4279 | Module: \code{utilities.polygon} |
---|
4280 | |
---|
4281 | Returns area of an arbitrary polygon (reference http://mathworld.wolfram.com/PolygonArea.html). |
---|
4282 | \end{funcdesc} |
---|
4283 | |
---|
4284 | \begin{funcdesc}{[$x_{min}$, $x_{max}$, $y_{min}$, $y_{max}$] = plot_polygons} |
---|
4285 | {polygons_points, style=None, |
---|
4286 | figname=None, label=None, verbose=False} |
---|
4287 | Module: \code{utilities.polygon} |
---|
4288 | |
---|
4289 | Plot a list of polygons to a file. |
---|
4290 | |
---|
4291 | \code{polygons_points} is a list of polygons to plot. |
---|
4292 | |
---|
4293 | \code{style} is a list of style strings to be applied to the corresponding polygon |
---|
4294 | in \code{polygons_points}. A polygon can be closed for plotting purposes by assigning |
---|
4295 | the style string 'line' to it in the appropriate place in the \code{style} list. |
---|
4296 | The default style is 'line'. |
---|
4297 | |
---|
4298 | \code{figname} is the path to the file to save the plot in. If not specified, use |
---|
4299 | \file{test_image.png}. |
---|
4300 | |
---|
4301 | The function returns a list containing the minimum and maximum of the points in all the |
---|
4302 | input polygons, i.e.\ \code{[$x_{min}$, $x_{max}$, $y_{min}$, $y_{max}$]}. |
---|
4303 | \end{funcdesc} |
---|
4304 | |
---|
4305 | |
---|
4306 | \pagebreak |
---|
4307 | \section{coordinate_transforms} |
---|
4308 | |
---|
4309 | |
---|
4310 | \pagebreak |
---|
4311 | \section{geospatial_data} |
---|
4312 | \label{sec:geospatial} |
---|
4313 | |
---|
4314 | This describes a class that represents arbitrary point data in UTM |
---|
4315 | coordinates along with named attribute values. |
---|
4316 | |
---|
4317 | %FIXME (Ole): This gives a LaTeX error |
---|
4318 | %\declaremodule{standard}{geospatial_data} |
---|
4319 | %\refmodindex{geospatial_data} |
---|
4320 | |
---|
4321 | \begin{classdesc}{Geospatial_data} |
---|
4322 | {data_points=None, |
---|
4323 | attributes=None, |
---|
4324 | geo_reference=None, |
---|
4325 | default_attribute_name=None, |
---|
4326 | file_name=None, |
---|
4327 | latitudes=None, |
---|
4328 | longitudes=None, |
---|
4329 | points_are_lats_longs=False, |
---|
4330 | max_read_lines=None, |
---|
4331 | load_file_now=True, |
---|
4332 | verbose=False} |
---|
4333 | Module: \code{geospatial_data.geospatial_data} |
---|
4334 | |
---|
4335 | This class is used to store a set of data points and associated |
---|
4336 | attributes, allowing these to be manipulated by methods defined for |
---|
4337 | the class. |
---|
4338 | |
---|
4339 | The data points are specified either by reading them from a NetCDF |
---|
4340 | or CSV file, identified through the parameter \code{file_name}, or |
---|
4341 | by providing their \code{x}- and \code{y}-coordinates in metres, |
---|
4342 | either as a sequence of 2-tuples of floats or as an $M \times 2$ |
---|
4343 | numeric array of floats, where $M$ is the number of points. |
---|
4344 | |
---|
4345 | Coordinates are interpreted relative to the origin specified by the |
---|
4346 | object \code{geo_reference}, which contains data indicating the UTM |
---|
4347 | zone, easting and northing. If \code{geo_reference} is not |
---|
4348 | specified, a default is used. |
---|
4349 | |
---|
4350 | Attributes are specified through the parameter \code{attributes}, |
---|
4351 | set either to a list or array of length $M$ or to a dictionary whose |
---|
4352 | keys are the attribute names and whose values are lists or arrays of |
---|
4353 | length $M$. One of the attributes may be specified as the default |
---|
4354 | attribute, by assigning its name to \code{default_attribute_name}. |
---|
4355 | If no value is specified, the default attribute is taken to be the |
---|
4356 | first one. |
---|
4357 | |
---|
4358 | Note that the \code{Geospatial_data} object currently reads entire datasets |
---|
4359 | into memory i.e.\ no memomry blocking takes place. |
---|
4360 | For this we refer to the \code{set_quantity()} method which will read PTS and CSV |
---|
4361 | files into \anuga using memory blocking allowing large files to be used. |
---|
4362 | \end{classdesc} |
---|
4363 | |
---|
4364 | \begin{methoddesc}{\emph{<Geospatial_data>}.import_points_file} |
---|
4365 | {file_name, delimiter=None, verbose=False} |
---|
4366 | Module: \code{geospatial_data.geospatial_data} |
---|
4367 | |
---|
4368 | Import a TXT, CSV or PTS points data file into a code{Geospatial_data} object. |
---|
4369 | |
---|
4370 | \code{file_name} is the path to a TXT, CSV or PTS points data file. |
---|
4371 | |
---|
4372 | \code{delimiter} is currently unused. |
---|
4373 | \end{methoddesc} |
---|
4374 | |
---|
4375 | \begin{methoddesc}{\emph{<Geospatial_data>}.export_points_file}{file_name, absolute=True, |
---|
4376 | as_lat_long=False, isSouthHemisphere=True} |
---|
4377 | Module: \code{geospatial_data.geospatial_data} |
---|
4378 | |
---|
4379 | Export a CSV or PTS points data file from a \code{Geospatial_data} object. |
---|
4380 | |
---|
4381 | \code{file_name} is the path to the CSV or PTS points file to write. |
---|
4382 | |
---|
4383 | \code{absolute} determines if the exported data is absolute or relative to the |
---|
4384 | \code{Geospatial_data} object geo_reference. If \code{True} the exported |
---|
4385 | data is absolute. |
---|
4386 | |
---|
4387 | \code{as_lat_long} exports the points data as latitudes and longitudes if \code{True}. |
---|
4388 | |
---|
4389 | \code{isSouthHemisphere} has effect only if \code{as_lat_long} is \code{True} and causes |
---|
4390 | latitude/longitude values to be for the southern (\code{True}) or northern hemispheres |
---|
4391 | (\code{False}). |
---|
4392 | \end{methoddesc} |
---|
4393 | |
---|
4394 | \begin{methoddesc}{points = \emph{<Geospatial_data>}.get_data_points} |
---|
4395 | {absolute=True, geo_reference=None, |
---|
4396 | as_lat_long=False, isSouthHemisphere=True} |
---|
4397 | Module: \code{geospatial_data.geospatial_data} |
---|
4398 | |
---|
4399 | Get the coordinates for all the data points as an $N \times 2$ array. |
---|
4400 | |
---|
4401 | \code{absolute} determines if the exported data is absolute or relative to the |
---|
4402 | \code{Geospatial_data} object geo_reference. If \code{True} the exported |
---|
4403 | data is absolute. |
---|
4404 | |
---|
4405 | \code{geo_reference} is the geo_reference the points are relative to, if supplied. |
---|
4406 | |
---|
4407 | \code{as_lat_long} exports the points data as latitudes and longitudes if \code{True}. |
---|
4408 | |
---|
4409 | \code{isSouthHemisphere} has effect only if \code{as_lat_long} is \code{True} and causes |
---|
4410 | latitude/longitude values to be for the southern (\code{True}) or northern hemispheres |
---|
4411 | (\code{False}). |
---|
4412 | \end{methoddesc} |
---|
4413 | |
---|
4414 | \begin{methoddesc}{\emph{<Geospatial_data>}.set_attributes}{attributes} |
---|
4415 | Module: \code{geospatial_data.geospatial_data} |
---|
4416 | |
---|
4417 | Set the attributes for a \code{Geospatial_data} object. |
---|
4418 | |
---|
4419 | \code{attributes} is the new value for the object's attributes. May be a dictionary or \code{None}. |
---|
4420 | \end{methoddesc} |
---|
4421 | |
---|
4422 | \begin{methoddesc}{atributes = \emph{<Geospatial_data>}.get_attributes}{attribute_name=None} |
---|
4423 | Module: \code{geospatial_data.geospatial_data} |
---|
4424 | |
---|
4425 | Get a named attribute from a \code{Geospatial_data} object. |
---|
4426 | |
---|
4427 | \code{attribute_name} is the name of the desired attribute. If \code{None}, return |
---|
4428 | the default attribute. |
---|
4429 | \end{methoddesc} |
---|
4430 | |
---|
4431 | \begin{methoddesc}{\emph{<Geospatial_data>}.get_all_attributes}{} |
---|
4432 | Module: \code{geospatial_data.geospatial_data} |
---|
4433 | |
---|
4434 | Get all attributes of a \code{Geospatial_data} object. |
---|
4435 | |
---|
4436 | Returns \code{None} or the attributes dictionary (which may be empty). |
---|
4437 | \end{methoddesc} |
---|
4438 | |
---|
4439 | \begin{methoddesc}{\emph{<Geospatial_data>}.set_default_attribute_name}{default_attribute_name} |
---|
4440 | Module: \code{geospatial_data.geospatial_data} |
---|
4441 | |
---|
4442 | Set the default attribute name of a \code{Geospatial_data} object. |
---|
4443 | |
---|
4444 | \code{default_attribute_name} is the new default attribute name. |
---|
4445 | \end{methoddesc} |
---|
4446 | |
---|
4447 | \begin{methoddesc}{\emph{<Geospatial_data>}.set_geo_reference}{geo_reference} |
---|
4448 | Module: \code{geospatial_data.geospatial_data} |
---|
4449 | |
---|
4450 | Set the internal geo_reference of a \code{Geospatial_data} object. |
---|
4451 | |
---|
4452 | \code{geo_reference} is the new internal geo_reference for the object. |
---|
4453 | If \code{None} will use the default geo_reference. |
---|
4454 | |
---|
4455 | If the \code{Geospatial_data} object already has an internal geo_reference |
---|
4456 | then the points data will be changed to use the new geo_reference. |
---|
4457 | \end{methoddesc} |
---|
4458 | |
---|
4459 | \begin{methoddesc}{\emph{<Geospatial_data>}.__add__}{other} |
---|
4460 | Module: \code{geospatial_data.geospatial_data} |
---|
4461 | |
---|
4462 | The \code{__add__()} method is defined so it is possible to add two |
---|
4463 | \code{Geospatial_data} objects. |
---|
4464 | \end{methoddesc} |
---|
4465 | |
---|
4466 | \label{ref:function_clip} |
---|
4467 | \begin{methoddesc}{geospatial = \emph{<Geospatial_data>}.clip}{polygon, closed=True, verbose=False} |
---|
4468 | Module: \code{geospatial_data.geospatial_data} |
---|
4469 | |
---|
4470 | Clip a \code{Geospatial_data} object with a polygon. |
---|
4471 | |
---|
4472 | \code{polygon} is the polygon to clip the \code{Geospatial_data} object with. |
---|
4473 | This may be a list of points, an $N \times 2$ array or a \code{Geospatial_data} |
---|
4474 | object. |
---|
4475 | |
---|
4476 | \code{closed} determines whether points on the \code{polygon} edge are inside (\code{True}) |
---|
4477 | or outside (\code{False}) the polygon. |
---|
4478 | |
---|
4479 | Returns a new \code{Geospatial_data} object representing points inside the |
---|
4480 | |
---|
4481 | Compare with \code{clip_outside()}, page \pageref{ref:function_clip_outside}. |
---|
4482 | specified polygon. |
---|
4483 | \end{methoddesc} |
---|
4484 | |
---|
4485 | \label{ref:function_clip_outside} |
---|
4486 | \begin{methoddesc}{geospatial = \emph{<Geospatial_data>}.clip_outside} |
---|
4487 | {polygon, closed=True, verbose=False} |
---|
4488 | Module: \code{geospatial_data.geospatial_data} |
---|
4489 | |
---|
4490 | Clip a \code{Geospatial_data} object with a polygon. |
---|
4491 | |
---|
4492 | \code{polygon} is the polygon to clip the \code{Geospatial_data} object with. |
---|
4493 | This may be a list of points, an $N \times 2$ array or a \code{Geospatial_data} |
---|
4494 | object. |
---|
4495 | |
---|
4496 | \code{closed} determines whether points on the \code{polygon} edge are inside (\code{True}) |
---|
4497 | or outside (\code{False}) the polygon. |
---|
4498 | |
---|
4499 | Returns a new \code{Geospatial_data} object representing points outside the |
---|
4500 | specified polygon. |
---|
4501 | |
---|
4502 | Compare with \code{clip()}, page \pageref{ref:function_clip}. |
---|
4503 | \end{methoddesc} |
---|
4504 | |
---|
4505 | \begin{methoddesc}{(g1, g2) = \emph{<Geospatial_data>}.split} |
---|
4506 | {factor=0.5, seed_num=None, verbose=False} |
---|
4507 | Module: \code{geospatial_data.geospatial_data} |
---|
4508 | |
---|
4509 | Split a \code{Geospatial_data} object into two objects of predetermined ratios. |
---|
4510 | |
---|
4511 | \code{factor} is the ratio of the size of the first returned object to the |
---|
4512 | original object. If '0.5' is supplied, the two resulting objects will be |
---|
4513 | of equal size. |
---|
4514 | |
---|
4515 | \code{seed_num}, if supplied, will be the random number generator seed used for |
---|
4516 | the split. |
---|
4517 | |
---|
4518 | Points of the two new geospatial_data object are selected RANDOMLY. |
---|
4519 | |
---|
4520 | Returns two geospatial_data objects that are disjoint sets of the original. |
---|
4521 | \end{methoddesc} |
---|
4522 | |
---|
4523 | \subsection{Miscellaneous Functions} |
---|
4524 | |
---|
4525 | The functions here are not \code{Geospatial_data} object methods, but are used with them. |
---|
4526 | |
---|
4527 | \begin{methoddesc}{X = find_optimal_smoothing_parameter} |
---|
4528 | {data_file, |
---|
4529 | alpha_list=None, |
---|
4530 | mesh_file=None, |
---|
4531 | boundary_poly=None, |
---|
4532 | mesh_resolution=100000, |
---|
4533 | north_boundary=None, |
---|
4534 | south_boundary=None, |
---|
4535 | east_boundary=None, |
---|
4536 | west_boundary=None, |
---|
4537 | plot_name='all_alphas', |
---|
4538 | split_factor=0.1, |
---|
4539 | seed_num=None, |
---|
4540 | cache=False, |
---|
4541 | verbose=False} |
---|
4542 | Module: \code{geospatial_data.geospatial_data} |
---|
4543 | |
---|
4544 | Calculate the minimum covariance from a set of points in a file. It does this |
---|
4545 | by removing a small random sample of points from \code{data_file} and creating |
---|
4546 | models with different alpha values from \code{alpha_list} and cross validates |
---|
4547 | the predicted value to the previously removed point data. Returns the |
---|
4548 | alpha value which has the smallest covariance. |
---|
4549 | |
---|
4550 | \code{data_file} is the input data file and must not contain points outside |
---|
4551 | the boundaries defined and is either a PTS, TXT or CSV file. |
---|
4552 | |
---|
4553 | \code{alpha_list} is the list of alpha values to use. |
---|
4554 | |
---|
4555 | \code{mesh_file} is the path to a mesh file to create (if supplied). |
---|
4556 | If \code{None} a mesh file will be created (named \file{temp.msh}). |
---|
4557 | NOTE: if there is a \code{mesh_resolution} defined or any boundaries are defined, |
---|
4558 | any input \code{mesh_file} value is ignored. |
---|
4559 | |
---|
4560 | \code{mesh_resolution} is the maximum area size for a triangle. |
---|
4561 | |
---|
4562 | \code{north_boundary}\\ |
---|
4563 | \code{south_boundary}\\ |
---|
4564 | \code{east_boundary}\\ |
---|
4565 | \code{west_boundary} are the boundary values to use. |
---|
4566 | |
---|
4567 | \code{plot_name} is the path name of the plot file to write. |
---|
4568 | |
---|
4569 | \code{seed_num} is the random number generator seed to use. |
---|
4570 | |
---|
4571 | The function returns a tuple \code{(min_covar, alpha)} where \code{min_covar} is |
---|
4572 | the minumum normalised covariance and \code{alpha} is the alpha value that |
---|
4573 | created it. A plot file is also written. |
---|
4574 | |
---|
4575 | This is an example of function usage: \nopagebreak |
---|
4576 | |
---|
4577 | \begin{verbatim} |
---|
4578 | convariance_value, alpha = $\backslash$ |
---|
4579 | find_optimal_smoothing_parameter(data_file=fileName, |
---|
4580 | alpha_list=[0.0001, 0.01, 1], |
---|
4581 | mesh_file=None, |
---|
4582 | mesh_resolution=3, |
---|
4583 | north_boundary=5, |
---|
4584 | south_boundary=-5, |
---|
4585 | east_boundary=5, |
---|
4586 | west_boundary=-5, |
---|
4587 | plot_name='all_alphas', |
---|
4588 | seed_num=100000, |
---|
4589 | verbose=False) |
---|
4590 | \end{verbatim} |
---|
4591 | |
---|
4592 | NOTE: The function will not work if the \code{data_file} extent is greater than the |
---|
4593 | \code{boundary_poly} polygon or any of the boundaries, e.g.\ \code{north_boundary}, etc. |
---|
4594 | \end{methoddesc} |
---|
4595 | |
---|
4596 | |
---|
4597 | \pagebreak |
---|
4598 | \section{Graphical Mesh Generator GUI} |
---|
4599 | The program \code{graphical_mesh_generator.py} in the \code{pmesh} module |
---|
4600 | allows the user to set up the mesh of the problem interactively. |
---|
4601 | It can be used to build the outline of a mesh or to visualise a mesh |
---|
4602 | automatically generated. |
---|
4603 | |
---|
4604 | Graphical Mesh Generator will let the user select various modes. The |
---|
4605 | current allowable modes are $vertex$, $segment$, $hole$ or $region$. The mode |
---|
4606 | describes what sort of object is added or selected in response to |
---|
4607 | mouse clicks. When changing modes any prior selected objects become |
---|
4608 | deselected. |
---|
4609 | |
---|
4610 | In general the left mouse button will add an object and the right |
---|
4611 | mouse button will select an object. A selected object can de deleted |
---|
4612 | by pressing the the middle mouse button (scroll bar). |
---|
4613 | |
---|
4614 | |
---|
4615 | \pagebreak |
---|
4616 | \section{class Alpha_Shape} |
---|
4617 | \emph{Alpha shapes} are used to generate close-fitting boundaries |
---|
4618 | around sets of points. The alpha shape algorithm produces a shape |
---|
4619 | that approximates to the 'shape formed by the points' -- or the shape |
---|
4620 | that would be seen by viewing the points from a coarse enough |
---|
4621 | resolution. For the simplest types of point sets, the alpha shape |
---|
4622 | reduces to the more precise notion of the convex hull. However, for |
---|
4623 | many sets of points the convex hull does not provide a close fit and |
---|
4624 | the alpha shape usually fits more closely to the original point set, |
---|
4625 | offering a better approximation to the shape being sought. |
---|
4626 | |
---|
4627 | In \anuga, an alpha shape is used to generate a polygonal boundary |
---|
4628 | around a set of points before mesh generation. The algorithm uses a |
---|
4629 | parameter $\alpha$ that can be adjusted to make the resultant shape |
---|
4630 | resemble the shape suggested by intuition more closely. An alpha |
---|
4631 | shape can serve as an initial boundary approximation that the user |
---|
4632 | can adjust as needed. |
---|
4633 | |
---|
4634 | The following paragraphs describe the class used to model an alpha |
---|
4635 | shape and some of the important methods and attributes associated |
---|
4636 | with instances of this class. |
---|
4637 | |
---|
4638 | \label{class:alpha_shape} |
---|
4639 | \begin{classdesc}{Alpha_Shape}{points, alpha=None} |
---|
4640 | Module: \code{alpha_shape} |
---|
4641 | |
---|
4642 | Instantiate an instance of the \code{Alpha_Shape} class. |
---|
4643 | |
---|
4644 | \code{points} is an $N \times 2$ list of points (\code{[[x1, y1],[x2, y2]}\ldots\code{]}). |
---|
4645 | |
---|
4646 | \code{alpha} is the 'fitting' parameter. |
---|
4647 | \end{classdesc} |
---|
4648 | |
---|
4649 | \begin{funcdesc}{alpha_shape_via_files}{point_file, boundary_file, alpha= None} |
---|
4650 | Module: \code{alpha_shape} |
---|
4651 | |
---|
4652 | This function reads points from the specified point file |
---|
4653 | \code{point_file}, computes the associated alpha shape (either |
---|
4654 | using the specified value for \code{alpha} or, if no value is |
---|
4655 | specified, automatically setting it to an optimal value) and outputs |
---|
4656 | the boundary to a file named \code{boundary_file}. This output file |
---|
4657 | lists the coordinates \code{(x, y)} of each point in the boundary, |
---|
4658 | using one line per point. |
---|
4659 | \end{funcdesc} |
---|
4660 | |
---|
4661 | \label{ref:method_set_boundary_type} |
---|
4662 | \begin{methoddesc}{\emph{<Alpha_shape>}.set_boundary_type} |
---|
4663 | {raw_boundary=True, |
---|
4664 | remove_holes=False, |
---|
4665 | smooth_indents=False, |
---|
4666 | expand_pinch=False, |
---|
4667 | boundary_points_fraction=0.2} |
---|
4668 | Module: \code{alpha_shape} |
---|
4669 | |
---|
4670 | This function sets internal state that controls how the \code{Alpha_shape} |
---|
4671 | boundary is presented or exported. |
---|
4672 | |
---|
4673 | \code{raw_boundary} sets the type to $raw$ if \code{True}, |
---|
4674 | i.e.\ the regular edges of the alpha shape. |
---|
4675 | |
---|
4676 | \code{remove_holes}, if \code{True} removes small holes ('small' is defined by |
---|
4677 | \code{boundary_points_fraction}). |
---|
4678 | |
---|
4679 | \code{smooth_indents}, if \code{True} removes sharp triangular indents in |
---|
4680 | the boundary. |
---|
4681 | |
---|
4682 | \code{expand_pinch}, if \code{True} tests for pinch-off and |
---|
4683 | corrects -- preventing a boundary vertex from having more than two edges. |
---|
4684 | \end{methoddesc} |
---|
4685 | |
---|
4686 | \label{ref:method_get_boundary} |
---|
4687 | \begin{methoddesc}{boundary = \emph{<Alpha_shape>}.get_boundary}{} |
---|
4688 | Module: \code{alpha_shape} |
---|
4689 | |
---|
4690 | Returns a list of tuples representing the boundary of the alpha |
---|
4691 | shape. Each tuple represents a segment in the boundary by providing |
---|
4692 | the indices of its two endpoints. |
---|
4693 | |
---|
4694 | See \code{set_boundary_type()}, page \pageref{ref:method_set_boundary_type}. |
---|
4695 | \end{methoddesc} |
---|
4696 | |
---|
4697 | \label{ref:method_write_boundary} |
---|
4698 | \begin{methoddesc}{\emph{<Alpha_shape>}.write_boundary}{file_name} |
---|
4699 | Module: \code{alpha_shape} |
---|
4700 | |
---|
4701 | Writes the list of 2-tuples returned by \code{get_boundary()} to the |
---|
4702 | file \code{file_name}, using one line per tuple. |
---|
4703 | |
---|
4704 | See \code{set_boundary_type()}, page \pageref{ref:method_set_boundary_type}. \\ |
---|
4705 | See \code{get_boundary()}, page \pageref{ref:method_get_boundary}. |
---|
4706 | \end{methoddesc} |
---|
4707 | |
---|
4708 | |
---|
4709 | \pagebreak |
---|
4710 | \section{Numerical Tools} |
---|
4711 | |
---|
4712 | The following table describes some useful numerical functions that |
---|
4713 | may be found in the module \module{utilities.numerical\_tools}: |
---|
4714 | |
---|
4715 | \begin{tabular}{|p{7.4cm} p{8.6cm}|} |
---|
4716 | \hline |
---|
4717 | \code{angle(v1, v2=None)} & Angle between two-dimensional vectors |
---|
4718 | \code{v1} and \code{v2}, or between \code{v1} and the $x$-axis if |
---|
4719 | \code{v2} is \code{None}. Value is in range $0$ to $2\pi$. \\ |
---|
4720 | & \\ |
---|
4721 | \code{normal\_vector(v)} & Normal vector to \code{v}.\\ |
---|
4722 | & \\ |
---|
4723 | \code{mean(x)} & Mean value of a vector \code{x}.\\ |
---|
4724 | & \\ |
---|
4725 | \code{cov(x, y=None)} & Covariance of vectors \code{x} and \code{y}. |
---|
4726 | If \code{y} is \code{None}, returns \code{cov(x, x)}.\\ |
---|
4727 | & \\ |
---|
4728 | \code{err(x, y=0, n=2, relative=True)} & Relative error of $\parallel$\code{x}$-$\code{y}$\parallel$ |
---|
4729 | to $\parallel$\code{y}$\parallel$ (2-norm if \code{n} = 2 or |
---|
4730 | Max norm if \code{n} = \code{None}). If denominator evaluates |
---|
4731 | to zero or if \code{y} is omitted or if \code{relative=False}, |
---|
4732 | absolute error is returned.\\ |
---|
4733 | & \\ |
---|
4734 | \code{norm(x)} & 2-norm of \code{x}.\\ |
---|
4735 | & \\ |
---|
4736 | \code{corr(x, y=None)} & Correlation of \code{x} and \code{y}. If |
---|
4737 | \code{y} is \code{None} returns autocorrelation of \code{x}.\\ |
---|
4738 | & \\ |
---|
4739 | \code{ensure\_numeric(A, typecode=None)} & Returns a numeric array for any sequence \code{A}. If |
---|
4740 | \code{A} is already a numeric array it will be returned |
---|
4741 | unaltered. Otherwise, an attempt is made to convert |
---|
4742 | it to a numeric array. (Needed because \code{array(A)} can |
---|
4743 | cause memory overflow.)\\ |
---|
4744 | & \\ |
---|
4745 | \code{histogram(a, bins, relative=False)} & Standard histogram. If \code{relative} is \code{True}, |
---|
4746 | values will be normalised against the total and thus |
---|
4747 | represent frequencies rather than counts.\\ |
---|
4748 | & \\ |
---|
4749 | \code{create\_bins(data, number\_of\_bins=None)} & Safely create bins for use with histogram. |
---|
4750 | If \code{data} contains only one point |
---|
4751 | or is constant, one bin will be created. |
---|
4752 | If \code{number\_of\_bins} is omitted, |
---|
4753 | 10 bins will be created.\\ |
---|
4754 | \hline |
---|
4755 | \end{tabular} |
---|
4756 | |
---|
4757 | |
---|
4758 | \section{Finding the Optimal Alpha Value} |
---|
4759 | |
---|
4760 | The function ???? |
---|
4761 | more to come very soon |
---|
4762 | |
---|
4763 | %?% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
4764 | %?% |
---|
4765 | %?% \chapter{Modules available in \anuga} |
---|
4766 | %?% |
---|
4767 | %?% |
---|
4768 | %?% %abstract_2d_finite_volumes |
---|
4769 | %?% |
---|
4770 | %?% \section{\module{abstract_2d_finite_volumes.domain}} |
---|
4771 | %?% Generic module for 2D triangular domains for finite-volume computations of conservation laws |
---|
4772 | %?% \declaremodule[domain]{}{domain} |
---|
4773 | %?% \label{mod:domain} |
---|
4774 | %?% |
---|
4775 | %?% |
---|
4776 | %?% \section{\module{abstract_2d_finite_volumes.ermapper_grids}} |
---|
4777 | %?% \declaremodule[ermappergrids]{}{ermapper_grids} |
---|
4778 | %?% \label{mod:ermapper_grids} |
---|
4779 | %?% |
---|
4780 | %?% |
---|
4781 | %?% \section{\module{abstract_2d_finite_volumes.general_mesh} } |
---|
4782 | %?% \declaremodule[generalmesh]{}{general_mesh} |
---|
4783 | %?% \label{mod:general_mesh} |
---|
4784 | %?% |
---|
4785 | %?% |
---|
4786 | %?% \section{\module{abstract_2d_finite_volumes.generic_boundary_conditions} } |
---|
4787 | %?% \declaremodule[genericboundaryconditions]{}{generic_boundary_conditions} |
---|
4788 | %?% \label{mod:generic_boundary_conditions} |
---|
4789 | %?% |
---|
4790 | %?% |
---|
4791 | %?% \section{\module{abstract_2d_finite_volumes.mesh_factory} } |
---|
4792 | %?% \declaremodule[meshfactory]{}{mesh_factory} |
---|
4793 | %?% \label{mod:mesh_factory} |
---|
4794 | %?% |
---|
4795 | %?% |
---|
4796 | %?% \section{\module{abstract_2d_finite_volumes.mesh_factory} } |
---|
4797 | %?% \declaremodule[meshfactory]{}{mesh_factory} |
---|
4798 | %?% \label{mod:mesh_factory} |
---|
4799 | %?% |
---|
4800 | %?% |
---|
4801 | %?% \section{\module{abstract_2d_finite_volumes.neighbour_mesh} } |
---|
4802 | %?% \declaremodule[neighbourmesh]{}{neighbour_mesh} |
---|
4803 | %?% \label{mod:neighbour_mesh} |
---|
4804 | %?% |
---|
4805 | %?% |
---|
4806 | %?% \section{\module{abstract_2d_finite_volumes.pmesh2domain} } |
---|
4807 | %?% \declaremodule[pmesh2domain]{}{pmesh2domain} |
---|
4808 | %?% \label{mod:pmesh2domain} |
---|
4809 | %?% |
---|
4810 | %?% |
---|
4811 | %?% \section{\module{abstract_2d_finite_volumes.quantity}} |
---|
4812 | %?% \declaremodule{}{quantity} |
---|
4813 | %?% \label{mod:quantity} |
---|
4814 | %?% |
---|
4815 | %?% \begin{verbatim} |
---|
4816 | %?% Class Quantity - Implements values at each triangular element |
---|
4817 | %?% |
---|
4818 | %?% To create: |
---|
4819 | %?% |
---|
4820 | %?% Quantity(domain, vertex_values) |
---|
4821 | %?% |
---|
4822 | %?% domain: Associated domain structure. Required. |
---|
4823 | %?% |
---|
4824 | %?% vertex_values: Nx3 array of values at each vertex for each element. |
---|
4825 | %?% Default None |
---|
4826 | %?% |
---|
4827 | %?% If vertex_values are None Create array of zeros compatible with domain. |
---|
4828 | %?% Otherwise check that it is compatible with dimenions of domain. |
---|
4829 | %?% Otherwise raise an exception |
---|
4830 | %?% \end{verbatim} |
---|
4831 | %?% |
---|
4832 | %?% |
---|
4833 | %?% \section{\module{abstract_2d_finite_volumes.region} } |
---|
4834 | %?% \declaremodule[region]{}{region} |
---|
4835 | %?% \label{mod:region} |
---|
4836 | %?% |
---|
4837 | %?% |
---|
4838 | %?% \section{\module{abstract_2d_finite_volumes.util} } |
---|
4839 | %?% \declaremodule[util]{}{util} |
---|
4840 | %?% \label{mod:util} |
---|
4841 | %?% |
---|
4842 | %?% |
---|
4843 | %?% advection |
---|
4844 | %?% alpha_shape |
---|
4845 | %?% caching |
---|
4846 | %?% coordinate_transforms |
---|
4847 | %?% culvert_flows |
---|
4848 | %?% damage_modelling |
---|
4849 | %?% euler |
---|
4850 | %?% fit_interpolate |
---|
4851 | %?% geospatial_data |
---|
4852 | %?% lib |
---|
4853 | %?% load_mesh |
---|
4854 | %?% mesh_engine |
---|
4855 | %?% pmesh |
---|
4856 | %?% SConstruct |
---|
4857 | %?% shallow_water |
---|
4858 | %?% utilities |
---|
4859 | %?% |
---|
4860 | %?% |
---|
4861 | %?% \section{\module{shallow\_water}} |
---|
4862 | %?% |
---|
4863 | %?% 2D triangular domains for finite-volume |
---|
4864 | %?% computations of the shallow water wave equation. |
---|
4865 | %?% This module contains a specialisation of class Domain from module domain.py consisting of methods specific to the Shallow Water |
---|
4866 | %?% Wave Equation |
---|
4867 | %?% |
---|
4868 | %?% \declaremodule[shallowwater]{}{shallow\_water} |
---|
4869 | %?% \label{mod:shallowwater} |
---|
4870 | |
---|
4871 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
4872 | |
---|
4873 | \chapter{\anuga Full-scale Validations} |
---|
4874 | |
---|
4875 | |
---|
4876 | \section{Overview} |
---|
4877 | |
---|
4878 | There are some long-running validations that are not included in the small-scale |
---|
4879 | validations that run when you execute the \module{validate_all.py} |
---|
4880 | script in the \module{anuga_validation/automated_validation_test} directory. |
---|
4881 | These validations are not run automatically since they can take a large amount |
---|
4882 | of time and require an internet connection and user input. |
---|
4883 | |
---|
4884 | |
---|
4885 | \section{Patong Beach} |
---|
4886 | |
---|
4887 | The Patong Beach validation is run from the \module{automated_validation_tests/patong_beach_validation} |
---|
4888 | directory. Just execute the \module{validate_patong.py} script in that directory. |
---|
4889 | This will run a Patong Beach simulation and compare the generated SWW file with a |
---|
4890 | known good copy of that file. |
---|
4891 | |
---|
4892 | The script attempts to refresh the validation data files from master copies held |
---|
4893 | on the Sourceforge project site. If you don't have an internet connection you |
---|
4894 | may still run the validation, as long as you have the required files. |
---|
4895 | |
---|
4896 | You may download the validation data files by hand and then run the validation. |
---|
4897 | Just go to the \anuga Sourceforge project download page at |
---|
4898 | \module{http://sourceforge.net/project/showfiles.php?group_id=172848} and select |
---|
4899 | the \module{validation_data} package, \module{patong-1.0} release. You need the |
---|
4900 | \module{data.tgz} file and one or more of the \module{patong.sww.\{BASIC|TRIAL|FINAL\}.tgz} |
---|
4901 | files. |
---|
4902 | |
---|
4903 | The BASIC validation is the quickest and the FINAL validation is the slowest. |
---|
4904 | The \module{validate.py} script will use whatever files you have, BASIC first and |
---|
4905 | FINAL last. |
---|
4906 | |
---|
4907 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
4908 | |
---|
4909 | \chapter{Frequently Asked Questions} |
---|
4910 | |
---|
4911 | The Frequently Asked Questions have been move to the online FAQ at: \\ |
---|
4912 | \url{https://datamining.anu.edu.au/anuga/wiki/FrequentlyAskedQuestions} |
---|
4913 | |
---|
4914 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
4915 | |
---|
4916 | \chapter{Glossary} |
---|
4917 | |
---|
4918 | \begin{tabular}{|lp{10cm}|c|} \hline |
---|
4919 | \emph{Term} & \emph{Definition} & \emph{Page}\\ |
---|
4920 | \hline |
---|
4921 | \indexedbold{\anuga} & Name of software (joint development between ANU and GA) & \pageref{def:anuga}\\ |
---|
4922 | \indexedbold{bathymetry} & offshore elevation & \\ |
---|
4923 | \indexedbold{conserved quantity} & conserved (stage, x and y momentum) & \\ |
---|
4924 | % \indexedbold{domain} & The domain of a function is the set of all input values to the function.& \\ |
---|
4925 | \indexedbold{Digital Elevation Model (DEM)} & DEMs are digital files consisting of points of elevations, |
---|
4926 | sampled systematically at equally spaced intervals.& \\ |
---|
4927 | \indexedbold{Dirichlet boundary} & A boundary condition imposed on a differential equation that specifies |
---|
4928 | the values the solution is to take on the boundary of the domain. |
---|
4929 | & \pageref{def:dirichlet boundary}\\ |
---|
4930 | \indexedbold{edge} & A triangular cell within the computational mesh can be depicted |
---|
4931 | as a set of vertices joined by lines (the edges). & \\ |
---|
4932 | \indexedbold{elevation} & refers to bathymetry and topography & \\ |
---|
4933 | \indexedbold{evolution} & integration of the shallow water wave equations over time & \\ |
---|
4934 | \indexedbold{finite volume method} & The method evaluates the terms in the shallow water wave equation as |
---|
4935 | fluxes at the surfaces of each finite volume. Because the flux entering |
---|
4936 | a given volume is identical to that leaving the adjacent volume, these |
---|
4937 | methods are conservative. Another advantage of the finite volume method is |
---|
4938 | that it is easily formulated to allow for unstructured meshes. The method |
---|
4939 | is used in many computational fluid dynamics packages. & \\ |
---|
4940 | \indexedbold{forcing term} & &\\ |
---|
4941 | \indexedbold{flux} & the amount of flow through the volume per unit time & \\ |
---|
4942 | \indexedbold{grid} & Evenly spaced mesh & \\ |
---|
4943 | \indexedbold{latitude} & The angular distance on a mericlear north and south of the equator, expressed in degrees and minutes. & \\ |
---|
4944 | \indexedbold{longitude} & The angular distance east or west, between the meridian of a particular place on Earth |
---|
4945 | and that of the Prime Meridian (located in Greenwich, England) expressed in degrees or time.& \\ |
---|
4946 | \indexedbold{Manning friction coefficient} & &\\ |
---|
4947 | \indexedbold{mesh} & Triangulation of domain &\\ |
---|
4948 | \indexedbold{mesh file} & A TSH or MSH file & \pageref{def:mesh file}\\ |
---|
4949 | \indexedbold{NetCDF} & &\\ |
---|
4950 | \indexedbold{node} & A point at which edges meet & \\ |
---|
4951 | \indexedbold{northing} & A rectangular (x,y) coordinate measurement of distance north from a north-south |
---|
4952 | reference line, usually a meridian used as the axis of origin within a map zone |
---|
4953 | or projection. Northing is a UTM (Universal Transverse Mercator) coordinate. & \\ |
---|
4954 | \indexedbold{points file} & A PTS or CSV file & \\ |
---|
4955 | \hline |
---|
4956 | \end{tabular} |
---|
4957 | |
---|
4958 | \begin{tabular}{|lp{10cm}|c|} |
---|
4959 | \hline |
---|
4960 | \indexedbold{polygon} & A sequence of points in the plane. \anuga represents a polygon either as a list |
---|
4961 | consisting of Python tuples or lists of length 2 or as an $N \times 2$ numeric array, |
---|
4962 | where $N$ is the number of points. |
---|
4963 | |
---|
4964 | The unit square, for example, would be represented either as \code{[ [0,0], [1,0], [1,1], [0,1] ]} |
---|
4965 | or as \code{array( [0,0], [1,0], [1,1], [0,1] )}. |
---|
4966 | |
---|
4967 | NOTE: For details refer to the module \module{utilities/polygon.py}. & \\ |
---|
4968 | \indexedbold{resolution} & The maximal area of a triangular cell in a mesh & \\ |
---|
4969 | \indexedbold{reflective boundary} & Models a solid wall. Returns same conserved quantities as those present in the |
---|
4970 | neighbouring volume but reflected. Specific to the shallow water equation as |
---|
4971 | it works with the momentum quantities assumed to be the second and third |
---|
4972 | conserved quantities. & \pageref{def:reflective boundary}\\ |
---|
4973 | \indexedbold{stage} & &\\ |
---|
4974 | % \indexedbold{try this} |
---|
4975 | \indexedbold{animate} & visualisation tool used with \anuga & \pageref{sec:animate}\\ |
---|
4976 | \indexedbold{time boundary} & Returns values for the conserved quantities as a function of time. |
---|
4977 | The user must specify the domain to get access to the model time. |
---|
4978 | & \pageref{def:time boundary}\\ |
---|
4979 | \indexedbold{topography} & onshore elevation &\\ |
---|
4980 | \indexedbold{transmissive boundary} & & \pageref{def:transmissive boundary}\\ |
---|
4981 | \indexedbold{vertex} & A point at which edges meet. & \\ |
---|
4982 | \indexedbold{xmomentum} & conserved quantity (note, two-dimensional SWW equations say only |
---|
4983 | \code{x} and \code{y} and NOT \code{z}) &\\ |
---|
4984 | \indexedbold{ymomentum} & conserved quantity & \\ |
---|
4985 | \hline |
---|
4986 | \end{tabular} |
---|
4987 | |
---|
4988 | %The \code{\e appendix} markup need not be repeated for additional |
---|
4989 | %appendices. |
---|
4990 | |
---|
4991 | % |
---|
4992 | % The ugly "%begin{latexonly}" pseudo-environments are really just to |
---|
4993 | % keep LaTeX2HTML quiet during the \renewcommand{} macros; they're |
---|
4994 | % not really valuable. |
---|
4995 | % |
---|
4996 | % If you don't want the Module Index, you can remove all of this up |
---|
4997 | % until the second \input line. |
---|
4998 | % |
---|
4999 | |
---|
5000 | %?% %begin{latexonly} |
---|
5001 | %?% %\renewcommand{\indexname}{Module Index} |
---|
5002 | %?% %end{latexonly} |
---|
5003 | %?% \input{mod\jobname.ind} % Module Index |
---|
5004 | |
---|
5005 | %begin{latexonly} |
---|
5006 | %\renewcommand{\indexname}{Index} |
---|
5007 | %end{latexonly} |
---|
5008 | \input{\jobname.ind} % Index |
---|
5009 | |
---|
5010 | |
---|
5011 | \begin{thebibliography}{99} |
---|
5012 | %\begin{thebibliography} |
---|
5013 | \bibitem[nielsen2005]{nielsen2005} |
---|
5014 | {\it Hydrodynamic modelling of coastal inundation}. |
---|
5015 | Nielsen, O., S. Roberts, D. Gray, A. McPherson and A. Hitchman. |
---|
5016 | In Zerger, A. and Argent, R.M. (eds) MODSIM 2005 International Congress on |
---|
5017 | Modelling and Simulation. Modelling and Simulation Society of Australia and |
---|
5018 | New Zealand, December 2005, pp. 518-523. ISBN: 0-9758400-2-9.\\ |
---|
5019 | http://www.mssanz.org.au/modsim05/papers/nielsen.pdf |
---|
5020 | |
---|
5021 | \bibitem[grid250]{grid250} |
---|
5022 | Australian Bathymetry and Topography Grid, June 2005. |
---|
5023 | Webster, M.A. and Petkovic, P. |
---|
5024 | Geoscience Australia Record 2005/12. ISBN: 1-920871-46-2.\\ |
---|
5025 | http://www.ga.gov.au/meta/ANZCW0703008022.html |
---|
5026 | |
---|
5027 | \bibitem[ZR1999]{ZR1999} |
---|
5028 | \newblock {Catastrophic Collapse of Water Supply Reservoirs in Urban Areas}. |
---|
5029 | \newblock C.~Zoppou and S.~Roberts. |
---|
5030 | \newblock {\em ASCE J. Hydraulic Engineering}, 125(7):686--695, 1999. |
---|
5031 | |
---|
5032 | \bibitem[Toro1999]{Toro1992} |
---|
5033 | \newblock Riemann problems and the waf method for solving the two-dimensional |
---|
5034 | shallow water equations. |
---|
5035 | \newblock E.~F. Toro. |
---|
5036 | \newblock {\em Philosophical Transactions of the Royal Society, Series A}, |
---|
5037 | 338:43--68, 1992. |
---|
5038 | |
---|
5039 | \bibitem{KurNP2001} |
---|
5040 | \newblock Semidiscrete central-upwind schemes for hyperbolic conservation laws |
---|
5041 | and hamilton-jacobi equations. |
---|
5042 | \newblock A.~Kurganov, S.~Noelle, and G.~Petrova. |
---|
5043 | \newblock {\em SIAM Journal of Scientific Computing}, 23(3):707--740, 2001. |
---|
5044 | \end{thebibliography} |
---|
5045 | % \end{thebibliography}{99} |
---|
5046 | |
---|
5047 | \end{document} |
---|