Ignore:
Timestamp:
Jun 30, 2013, 11:39:09 PM (11 years ago)
Author:
mungkasi
Message:

Correcting some old links and bad boxes.

Location:
trunk/anuga_core/user_manual
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/user_manual/anuga_user_manual.tex

    r8729 r8942  
    145145\url{http://sourceforge.net/projects/anuga}. A snapshot of work in progress is
    146146available through the \anuga software repository at
    147 \url{https://datamining.anu.edu.au/svn/anuga/trunk/anuga_core/source/anuga}
     147\url{https://anuga.anu.edu.au/svn/anuga/trunk/anuga_core/source/anuga}
    148148where the more adventurous reader might like to go.
    149149
    150150This manual describes \anuga version \version. To check for later versions of this manual
    151 go to \url{https://datamining.anu.edu.au/anuga}.
     151go to \url{https://anuga.anu.edu.au}.
    152152
    153153\section{Scope}
     
    160160
    161161The latest installation instructions may be found at:
    162 \url{https://datamining.anu.edu.au/anuga/attachment/wiki/WikiStart/anuga_installation_guide-1.2.0.pdf}.
     162\url{http://anuga.anu.edu.au/raw-attachment/wiki/WikiStart/anuga_installation_guide-1.2.1.pdf}.
    163163
    164164\section{Audience}
     
    389389
    390390\begin{verbatim}
    391 domain.set_quantities_to_be_stored({'stage': 2, 'xmomentum': 2, 'ymomentum': 2, 'elevation': 1})
     391domain.set_quantities_to_be_stored({
     392'stage': 2, 'xmomentum': 2, 'ymomentum': 2, 'elevation': 1})
    392393\end{verbatim}
    393394
     
    590591  File "mesh_test.py", line 114, in ?
    591592    domain.set_boundary({'west': Bi, 'east': Bo, 'north': Br, 'south': Br})
    592   File "X:\inundation\sandpits\onielsen\anuga_core\source\anuga\abstract_2d_finite_volumes\domain.py", line 505, in set_boundary
     593  File "X:\inundation\sandpits\onielsen\anuga_core\source\anuga\
     594    abstract_2d_finite_volumes\domain.py", line 505, in set_boundary
    593595    raise msg
    594596ERROR (domain.py): Tag "exterior" has not been bound to a boundary object.
     
    607609
    608610\begin{verbatim}
    609 Bw = anuga.Time_boundary(domain=domain, f=lambda t: [(0.1*sin(t*2*pi)-0.3), 0.0, 0.0])
     611Bw = anuga.Time_boundary(domain=domain,
     612f=lambda t: [(0.1*sin(t*2*pi)-0.3), 0.0, 0.0])
    610613\end{verbatim}
    611614
     
    724727
    725728\begin{verbatim}
    726 points, vertices, boundary = anuga.rectangular_cross(m, n, len1=length, len2=width)
     729points, vertices, boundary = anuga.rectangular_cross(m, n,
     730                                                     len1=length, len2=width)
    727731\end{verbatim}
    728732
     
    740744dx = dy = 1           # Resolution: Length of subdivisions on both axes
    741745
    742 points, vertices, boundary = anuga.rectangular_cross(int(length/dx), int(width/dy),
    743                                                len1=length, len2=width)
     746points, vertices, boundary = anuga.rectangular_cross(int(length/dx),
     747                                   int(width/dy), len1=length, len2=width)
    744748\end{verbatim}
    745749
     
    14261430%\begin{tabular}{ll}
    14271431\begin{tabular}{p{2.0cm} p{14.0cm}}
    1428   \emph{use\_cache} & Specifies whether caching is to be used for improved performance.
    1429                       See Section \ref{sec:caching} for details on the underlying caching functionality\\
    1430   \emph{verbose} & If \code{True}, provides detailed terminal output to the user\\
     1432  \emph{use\_cache} & Specifies whether caching is to be used for improved performance. See Section \ref{sec:caching} for details\\
     1433                    & on the underlying caching functionality\\                     
     1434  \emph{verbose}    & If \code{True}, provides detailed terminal output to the user\\
    14311435\end{tabular}
    14321436
     
    22062210\begin{verbatim}
    22072211# Create digital elevation model from points file
    2208 domain.set_quantity('elevation', filename='elevation_file.pts, verbose=True)
     2212domain.set_quantity('elevation', filename=
     2213                                 'elevation_file.pts', verbose=True)
    22092214
    22102215# Add buildings from file
    2211 building_polygons, building_heights = anuga.load_csv_as_building_polygons(building_file)
     2216building_polygons, building_heights =
     2217                  anuga.load_csv_as_building_polygons(building_file)
    22122218
    22132219B = []
Note: See TracChangeset for help on using the changeset viewer.