Changeset 7750
- Timestamp:
- May 25, 2010, 9:06:45 PM (15 years ago)
- Location:
- anuga_validation/automated_validation_tests
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_validation/automated_validation_tests/UQ_runup_2006/run_dam.py
r7471 r7750 22 22 from anuga.fit_interpolate.interpolate import interpolate_sww2csv, \ 23 23 file_function 24 from anuga.abstract_2d_finite_volumes.util import start_screen_catcher, \ 25 copy_code_files 26 from anuga.shallow_water.data_manager import csv2dict 24 from anuga.utilities.file_utils import copy_code_files, load_csv_as_dict 27 25 from numerical_tools import err 28 26 … … 94 92 95 93 # Load actual experimental results 96 actual,title_index_dic = csv2dict(project.actual_filename)94 actual,title_index_dic = load_csv_as_dict(project.actual_filename) 97 95 98 96 gauge_locations = [[0.4,0.2]] -
anuga_validation/automated_validation_tests/patong_beach_validation/run_model.py
r7567 r7750 38 38 from anuga.utilities.system_tools import file_length 39 39 40 from anuga.shallow_water.data_manager import start_screen_catcher 41 from anuga.shallow_water.data_manager import copy_code_files 40 from anuga.utilities.file_utils import copy_code_files 42 41 from anuga.shallow_water.data_manager import urs2sts 43 42 from anuga.utilities.polygon import read_polygon, Polygon_function -
anuga_validation/automated_validation_tests/patong_beach_validation/validate_patong_scenario.py
r7666 r7750 52 52 raise Exception(msg) 53 53 54 if mem < 8000000:54 if mem < 2000000: 55 55 msg = 'Insufficient memory to run Patong beach validation. ' 56 56 msg += 'Got %i need at least 8GB. ' % mem -
anuga_validation/automated_validation_tests/urs_mux_files_validation/run_Bf.py
r7276 r7750 22 22 import numpy as num 23 23 from anuga.pmesh.mesh_interface import create_mesh_from_regions 24 from anuga.abstract_2d_finite_volumes.util import start_screen_catcher, copy_code_files, sww2timeseries, get_data_from_file 24 from anuga.utilities.file_utils import copy_code_files 25 from anuga.abstract_2d_finite_volumes.util import sww2timeseries, get_data_from_file 25 26 # Application specific imports 26 27
Note: See TracChangeset
for help on using the changeset viewer.