Changeset 2878
- Timestamp:
- May 16, 2006, 2:06:46 PM (19 years ago)
- Location:
- production
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
production/onslow_2006/introduction.tex
r2834 r2878 25 25 wave equation using the finite volume technique (described in [1]). 26 26 An 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 27 according to areas of interest and that wetting and drying 28 is treated robustly as part of the numerical scheme. 29 ANUGA is continually being developed and validated. 30 As such, the current results represent ongoing work 29 31 and may change in the future. 30 32 -
production/pt_hedland_2006/introduction.tex
r2838 r2878 25 25 wave equation using the finite volume technique (described in [1]). 26 26 An 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 27 according to areas of interest and that wetting and drying 28 is treated robustly as part of the numerical scheme. 29 ANUGA is continually being developed and validated. 30 As such, the current results represent ongoing work 29 31 and may change in the future. 30 32 -
production/sydney_2006/find_max.py
r2869 r2878 6 6 from math import exp, cosh 7 7 import Numeric 8 8 9 9 10 # Grilli and Watts 2005 example … … 33 34 tol = 0.001 34 35 c = 0 35 direction = ' positive'36 direction = 'negative' 36 37 while c < 100000 and deriv > 0: 37 deriv = dfuncdx(x, 1.0)38 deriv = dfuncdx(x,0.83) 38 39 if deriv < 0: xstar = x 39 40 if direction == 'positive': x += step … … 50 51 test = 0.0 51 52 for xi in x: 52 testi = func(xi,0.0, 1.0)53 testi = func(xi,0.0,0.83) 53 54 if direction == 'positive': 54 55 if testi > test:
Note: See TracChangeset
for help on using the changeset viewer.