Changeset 8548
- Timestamp:
- Sep 1, 2012, 1:58:45 PM (12 years ago)
- Location:
- trunk/anuga_core
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/shallow_water/okada_tsunami.py
r8467 r8548 23 23 """ 24 24 import numpy 25 import okada_tsunami_fortran 25 26 try: 27 import okada_tsunami_fortran 28 except: 29 raise Exception,\ 30 'okada_tsunami_fortran does not appear to be compiled.\n \ 31 You can compile it by running the command:\n \ 32 "f2py -c okada_tsunami_fortran.f -m okada_tsunami_fortran"\n \ 33 in the shallow_water directory' 34 26 35 from pyproj import Proj 27 36 import copy -
trunk/anuga_core/validation_tests/Tests/Benchmarks/Isolated_Building/results.tex
r8523 r8548 3 3 4 4 Herein \anuga{} is tested against the isolated obstacle test, which involves a dam-break flow past an isolated building. This benchmark experiment is reported in: 5 6 Soares-Frazao, S. and Zech, Y. (2007) Experimental study of dam-break flow against an isolated obstacle. Journal of Hydraulic Resaerch 45(Extra Issue):27-36 5 \begin{verbatim} 6 Soares-Frazao, S. and Zech, Y. (2007) 7 Experimental study of dam-break flow against an isolated obstacle. Journal of 8 Hydraulic Resaerch 45(Extra Issue):27-36 9 \end{verbatim} 7 10 8 11 The data is provided in a DVD-ROM associated with the above JHR issue. 9 12 10 Note that many models have been applied to this problem, and their performance is reviewed in Soares Frazao, S., Noel, B., Spinewine, B., and Zech, Y. (YEAR) The isolated building test case: results from the IMPACT benchmark. At the time of writing, the performance of \anuga{} on this problem is qualitatively similar to the performance of most other models -- i.e. it simulates the main aspects of the flow, but often not the details. It seems likely that these experimental flows may well partly violate the shallow water approximations, and to the extent that this is true, we would not expect perfect agreement. 13 Note that many models have been applied to this problem, and their performance is reviewed in: 14 \begin{verbatim} 15 Soares Frazao, S., Noel, B., Spinewine, B., and Zech, Y. (YEAR) The isolated 16 building test case: results from the IMPACT benchmark. 17 \end{verbatim} 18 At the time of writing, the performance of \anuga{} on this problem is qualitatively similar to the performance of most other models -- i.e. it simulates the main aspects of the flow, but often not the details. It seems likely that these experimental flows may well partly violate the shallow water approximations, and to the extent that this is true, we would not expect perfect agreement. 11 19 12 20 \subsection{Results} -
trunk/anuga_core/validation_tests/Tests/Simple/parabolic_basin_1D/parabolic.py
r8468 r8548 15 15 domain.set_name('parabola_v2') # Output to file runup.sww 16 16 domain.set_datadir('.') # Use current folder 17 domain.set_minimum_allowed_height(0.01)17 #domain.set_minimum_allowed_height(0.01) 18 18 19 19 -
trunk/anuga_core/validation_tests/Tests/Simple/runup_sinusoid/runup_sinusoid.py
r8468 r8548 25 25 domain.set_quantities_to_be_stored({'stage': 2, 'xmomentum': 2, 'ymomentum': 2, 'elevation': 1}) 26 26 #domain.set_store_vertices_uniquely(True) 27 domain.minimum_allowed_height=0.00127 #domain.minimum_allowed_height=0.001 28 28 29 29 #------------------------------------------------------------------------------ -
trunk/anuga_core/validation_tests/__init__.py
r8527 r8548 1 1 """ 2 A set of modules which is used to build a geometrical representation 3 of the test scenario domain. 4 5 It contains functions for fitting data across an arbitrary terrain height 6 mesh. 2 Validation tests 7 3 """ 8 4 … … 12 8 13 9 14 -
trunk/anuga_core/validation_tests/produce_results.py
r8533 r8548 20 20 timestamp = time.asctime() 21 21 major_revision = anuga.config.major_revision 22 minor_revision = anuga.utilities.system_tools.get_revision_number() 22 try: 23 # This fails if using git for version control 24 minor_revision = anuga.utilities.system_tools.get_revision_number() 25 except: 26 try: 27 # This works when using git on unix 28 minor_revision=os.popen("git show-ref --head -s | head -n1").read().strip() 29 except: 30 # This is a fallback position 31 minor_revision='unknown' 23 32 24 33 #--------------------------------- -
trunk/anuga_core/validation_tests/report.tex
r8533 r8548 50 50 %====================== 51 51 52 %\inputresults{Tests/Benchmarks/Isolated_Building}52 \inputresults{Tests/Benchmarks/Isolated_Building} 53 53 54 54 \inputresults{Tests/Benchmarks/Okushiri}
Note: See TracChangeset
for help on using the changeset viewer.