- Timestamp:
- Aug 21, 2012, 11:07:14 PM (13 years ago)
- Location:
- trunk/anuga_core/validation_tests/Tests/Benchmarks/Okushiri
- Files:
-
- 3 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/validation_tests/Tests/Benchmarks/Okushiri
-
Property
svn:ignore
set to
.deps
-
Property
svn:ignore
set to
-
trunk/anuga_core/validation_tests/Tests/Benchmarks/Okushiri/compare_timeseries_with_measures.py
r8468 r8529 13 13 import project 14 14 from anuga.abstract_2d_finite_volumes.util import file_function 15 from anuga.utilities.numerical_tools import\ 16 ensure_numeric, cov, get_machine_precision 15 from anuga.utilities.numerical_tools import ensure_numeric 16 from anuga.utilities.numerical_tools import cov 17 #from anuga.utilities.numerical_tools import get_machine_precision 17 18 from anuga.shallow_water.sww_interrogate import get_maximum_inundation_elevation 18 19 from anuga.shallow_water.sww_interrogate import get_maximum_inundation_location 19 from anuga.geometry.polygon import is_inside_polygon20 from create_okushiri import gulleys21 20 22 21 if sys.platform == 'win32': -
trunk/anuga_core/validation_tests/Tests/Benchmarks/Okushiri/create_okushiri.py
r8461 r8529 13 13 import project 14 14 15 15 # configure my logging 16 import anuga.utilities.log as log 17 #log.console_logging_level = log.INFO 18 #log.log_logging_level = log.DEBUG 19 log.log_filename = './create_okushiri.log' 16 20 17 21 -
trunk/anuga_core/validation_tests/Tests/Benchmarks/Okushiri/produce_results.py
r8468 r8529 1 from anuga.utilities.argparsing import run_validation_script 1 #-------------------------------- 2 # import modules 3 #-------------------------------- 4 from fabricate import * 5 from validation_tests.utilities import run_validation_script 2 6 7 # Setup the python scripts which produce the output for this 8 # validation test 3 9 4 run_validation_script('create_okushiri.py') 5 run_validation_script('run_okushiri.py') 6 run_validation_script('compare_timeseries_with_measures.py') 10 def build(): 11 run_validation_script('create_okushiri.py') 12 run_validation_script('run_okushiri.py') 13 run_validation_script('compare_timeseries_with_measures.py') 7 14 15 def clean(): 16 autoclean() 8 17 18 main() -
trunk/anuga_core/validation_tests/Tests/Benchmarks/Okushiri/run_okushiri.py
r8468 r8529 25 25 26 26 import project 27 28 # configure my logging 29 import anuga.utilities.log as log 30 #log.console_logging_level = log.INFO 31 #log.log_logging_level = log.DEBUG 32 log.log_filename = './run_okushiri.log' 33 34 27 35 28 36 def main(elevation_in_mesh=False):
Note: See TracChangeset
for help on using the changeset viewer.