source: trunk/anuga_documentation/coding_standards/anuga_naming_conventions.tex @ 8899

Last change on this file since 8899 was 8410, checked in by gray, 13 years ago

testing svn

File size: 1.6 KB
Line 
1\documentclass{manual}
2
3\title{ANUGA Naming Conventions}
4
5\author{Ole Nielsen, Stephen Roberts}
6
7\usepackage{graphicx}
8
9
10% Please at least include a long-lived email address;
11% the rest is at your discretion.
12\authoraddress{Geoscience Australia \\
13  Email: \email{ole.nielsen@ga.gov.au}
14}
15
16%Draft date
17\date{\today}                   % update before release.
18                % Use an explicit date so that reformatting
19                % doesn't cause a new date to be used.  Setting
20                % the date to \today can be used during draft
21                % stages to make it easier to handle versions.
22
23               
24\makeindex          % tell \index to actually write the .idx file
25%\makemodindex          % If this contains a lot of module sections.
26
27
28
29\begin{document}
30\maketitle
31
32
33
34% This makes the contents more accessible from the front page of the HTML.
35\ifhtml
36\chapter*{Front Matter\label{front}}
37\fi
38
39
40
41
42\chapter{Introduction} 
43
44This document outlines naming conventions for the ANUGA hydrodynamic modelling software.
45
46
47
48\section{Variables}
49\label{sec:variables}
50
51
52\begin{tabular}{|p{8cm} p{8cm}|}  \hline
53\textbf{Name} & \textbf{Symbol} & \textbf{Description}  \\ \hline \hline
54node\_coordinates & (x, y) & coordinates of point in triangular mesh where vertices are connected. \\
55triangle & (i, j, k) & indices of nodes constituting one mesh triangle. Nodes must be listed in counter clockwise order. Alternative names are currently 'volumes' and 'elements'. \\
56\\
57
58vertex\_values
59vertex\_coordinates
60node\_values
61centroid\_coordinates
62centroid\_values
63
64polygon & & \\
65
66
67
68
69\end{document}
Note: See TracBrowser for help on using the repository browser.