Changeset 2600


Ignore:
Timestamp:
Mar 27, 2006, 6:55:32 AM (18 years ago)
Author:
howard
Message:

Added material on evolve, plus a few other minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • documentation/user_manual/anuga_user_manual.tex

    r2574 r2600  
    216216that describes each step of the program and explains it significance.
    217217
    218 \verbatiminput{examples/bedslopephysical.py}
     218%\verbatiminput{examples/bedslopephysical.py}
     219\verbatiminput{examples/bedslope.py}
    219220
    220221\subsection{Establishing the Mesh}
     
    484485\begin{figure}[hbt]
    485486
    486   \centerline{ \includegraphics[width=75mm, height=75mm]{examples/bedslopestart.eps}}
     487%  \centerline{ \includegraphics[width=75mm, height=75mm]{examples/bedslopestart.eps}}
    487488 
    488489  \caption{Bedslope example viewed with Swollen}
     
    494495
    495496  \centerline{
    496     \includegraphics[width=75mm, height=75mm]{examples/bedslopeduring.eps}
    497     \includegraphics[width=75mm, height=75mm]{examples/bedslopeend.eps}
     497%    \includegraphics[width=75mm, height=75mm]{examples/bedslopeduring.eps}
     498%    \includegraphics[width=75mm, height=75mm]{examples/bedslopeend.eps}
    498499   }   
    499500 
     
    11321133\section{Evolution}
    11331134
    1134   \begin{funcdesc}{evolve}{???}
     1135  \begin{funcdesc}{evolve}{yieldstep = None, finaltime = None, duration = None, skip_initial_step = False}
     1136 
     1137  Module: pyvolution.domain
     1138 
     1139  This function (a method of \code{domain}) is invoked once all the preliminary steps have been
     1140  taken, and causes the model to progress through a successive steps in its evolution, during
     1141  which quantities are progressively recalculated and the domain may be modified. The user specifies
     1142  the time period over which the evolution is to take place, by specifying values (in seconds) for either
     1143  \code{duration} or \code{finaltime}, as well as the interval in seconds after which results are to be
     1144  stored and statistics output. 
     1145 
     1146  You can include \code{evolve} in a statement of the type:
     1147 
     1148  {\small \begin{verbatim}
     1149      for t in domain.evolve(yieldstep, finaltime):
     1150          <Do something with domain and t>
     1151  \end{verbatim}}
    11351152
    11361153  \end{funcdesc}
Note: See TracChangeset for help on using the changeset viewer.