Changeset 2878


Ignore:
Timestamp:
May 16, 2006, 2:06:46 PM (19 years ago)
Author:
sexton
Message:

intro updates

Location:
production
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • production/onslow_2006/introduction.tex

    r2834 r2878  
    2525wave equation using the finite volume technique (described in [1]).
    2626An advantage of this technique is that the cell resolution can be changed
    27 according to areas of interest. ANUGA is under constant development and
    28 validation investigations. As such, the current results represent ongoing work
     27according to areas of interest and that wetting and drying
     28is treated robustly as part of the numerical scheme.
     29ANUGA is continually being developed and validated.
     30As such, the current results represent ongoing work
    2931and may change in the future.
    3032
  • production/pt_hedland_2006/introduction.tex

    r2838 r2878  
    2525wave equation using the finite volume technique (described in [1]).
    2626An advantage of this technique is that the cell resolution can be changed
    27 according to areas of interest. ANUGA is under constant development and
    28 validation investigations. As such, the current results represent ongoing work
     27according to areas of interest and that wetting and drying
     28is treated robustly as part of the numerical scheme.
     29ANUGA is continually being developed and validated.
     30As such, the current results represent ongoing work
    2931and may change in the future.
    3032
  • production/sydney_2006/find_max.py

    r2869 r2878  
    66from math import exp, cosh
    77import Numeric
     8
    89
    910# Grilli and Watts 2005 example
     
    3334tol = 0.001
    3435c = 0
    35 direction = 'positive'
     36direction = 'negative'
    3637while c < 100000 and deriv > 0:
    37     deriv = dfuncdx(x,1.0)
     38    deriv = dfuncdx(x,0.83)
    3839    if deriv < 0: xstar = x
    3940    if direction == 'positive': x += step
     
    5051test = 0.0
    5152for xi in x:
    52     testi = func(xi,0.0,1.0)
     53    testi = func(xi,0.0,0.83)
    5354    if direction == 'positive':
    5455        if testi > test:
Note: See TracChangeset for help on using the changeset viewer.