Changeset 7750


Ignore:
Timestamp:
May 25, 2010, 9:06:45 PM (15 years ago)
Author:
hudson
Message:

Updated validation suite to work with new API - confirmed that Patong passes.

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  
    2222from anuga.fit_interpolate.interpolate import interpolate_sww2csv, \
    2323     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
     24from anuga.utilities.file_utils import copy_code_files, load_csv_as_dict
    2725from numerical_tools import  err 
    2826
     
    9492
    9593    # 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)
    9795   
    9896    gauge_locations = [[0.4,0.2]]
  • anuga_validation/automated_validation_tests/patong_beach_validation/run_model.py

    r7567 r7750  
    3838from anuga.utilities.system_tools import file_length
    3939
    40 from anuga.shallow_water.data_manager import start_screen_catcher
    41 from anuga.shallow_water.data_manager import copy_code_files
     40from anuga.utilities.file_utils import copy_code_files
    4241from anuga.shallow_water.data_manager import urs2sts
    4342from anuga.utilities.polygon import read_polygon, Polygon_function
  • anuga_validation/automated_validation_tests/patong_beach_validation/validate_patong_scenario.py

    r7666 r7750  
    5252            raise Exception(msg)
    5353           
    54         if mem < 8000000:
     54        if mem < 2000000:
    5555            msg = 'Insufficient memory to run Patong beach validation. '
    5656            msg += 'Got %i need at least 8GB. ' % mem
  • anuga_validation/automated_validation_tests/urs_mux_files_validation/run_Bf.py

    r7276 r7750  
    2222import numpy as num
    2323from 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
     24from anuga.utilities.file_utils import copy_code_files
     25from anuga.abstract_2d_finite_volumes.util import sww2timeseries, get_data_from_file
    2526# Application specific imports
    2627
Note: See TracChangeset for help on using the changeset viewer.