Changeset 7798 for anuga_validation/automated_validation_tests
- Timestamp:
- Jun 7, 2010, 11:38:23 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_validation/automated_validation_tests/urs_mux_files_validation/run_Bf.py
r7750 r7798 14 14 # Standard modules 15 15 from os import sep,getcwd, access, F_OK, mkdir, getenv 16 from os.path import dirname, basename, abspath16 from os.path import dirname, basename, abspath 17 17 from shutil import copy 18 18 import time, sys, os, tempfile 19 19 20 20 # Related major packages 21 from anuga.shallow_water import Domain,Dirichlet_boundary,File_boundary,Transmissive_boundary, Field_boundary 21 import anuga 22 22 import numpy as num 23 from anuga.pmesh.mesh_interface import create_mesh_from_regions 24 from anuga.utilities.file_utils import copy_code_files 25 from anuga.abstract_2d_finite_volumes.util import sww2timeseries, get_data_from_file 23 24 26 25 # Application specific imports 26 import anuga.file.csv_file as csv_file 27 27 28 28 #------------------------------------------------------------------------------ … … 47 47 # N, W, S, E 48 48 49 create_mesh_from_regions(all,49 anuga.create_mesh_from_regions(all, 50 50 boundary_tags={'ocean': [ 0],'side': [1, 3], 'back': [2]}, 51 51 maximum_triangle_area=50000, … … 58 58 #------------------------------------------------------------------------- 59 59 #print 'Setup computational domain' 60 domain = Domain( meshes_dir_name, verbose=True) 61 62 from anuga.shallow_water.data_manager import urs2sww 60 domain = anuga.Domain( meshes_dir_name, verbose=True) 61 63 62 boundaries_dir_name = 'o_test' 64 63 65 64 # convert MUX urs files to an SWW file output 66 urs2sww(boundaries_dir_name,boundaries_dir_name,65 anuga.urs2sww(boundaries_dir_name,boundaries_dir_name, 67 66 mint=9200, maxt= 11200, 68 67 fail_on_NaN= False, … … 91 90 # Setup boundary conditions 92 91 #------------------------------------------------------------------------- 93 Bf = Field_boundary(out_dir + 'o_test.sww',92 Bf = anuga.Field_boundary(out_dir + 'o_test.sww', 94 93 domain, mean_stage=tide, use_cache=True, verbose=False) 95 94 96 95 #Br = Reflective_boundary(domain) 97 Bt = Transmissive_boundary(domain)98 Bd = Dirichlet_boundary([tide,0,0])96 Bt = anuga.Transmissive_boundary(domain) 97 Bd = anuga.Dirichlet_boundary([tide,0,0]) 99 98 100 99 … … 150 149 #get timeseries data from evolved sww file 151 150 #---------------------------------------------------------------------------- 152 texname, elev_output = sww2timeseries(swwfiles,151 texname, elev_output = anuga.sww2timeseries(swwfiles, 153 152 out_dir+sep+"gauges.txt", 154 153 # out_dir+sep+"gauges.csv", … … 171 170 #get timeseries data from boundary sww file 172 171 #---------------------------------------------------------------------------- 173 texname, elev_output = sww2timeseries(swwfiles,172 texname, elev_output = anuga.sww2timeseries(swwfiles, 174 173 out_dir+sep+"boundary_gauges.txt", 175 174 # out_dir+sep+"boundary_gauges.csv", … … 189 188 #---------------------------------------------------------------------------- 190 189 191 e_ header, e_data = get_data_from_file(evolved_dir_filename)190 e_data = csv_file.load_csv_as_array(evolved_dir_filename) 192 191 193 192 # assign columns from array to single vector(arrays) 194 e_time = e_data[ :,0]195 e_stage = e_data[ :,1]196 e_momentum = e_data[ :,2]197 e_speed = e_data[ :,3]198 e_elevation = e_data[ :,4]193 e_time = e_data['Time'] 194 e_stage = e_data['Stage'] 195 e_momentum = e_data['Momentum'] 196 e_speed = e_data['Speed'] 197 e_elevation = e_data['Elevation'] 199 198 200 199 #---------------------------------------------------------------------------- … … 203 202 #---------------------------------------------------------------------------- 204 203 205 b_ header, b_data = get_data_from_file(boundary_dir_filename)204 b_data = csv_file.load_csv_as_array(boundary_dir_filename) 206 205 207 206 # assign columns from array to single vector(arrays) 208 b_time = b_data[ :,0]209 b_stage = b_data[ :,1]210 b_momentum = b_data[ :,2]211 b_speed = b_data[ :,3]212 b_elevation = b_data[ :,4]207 b_time = b_data['Time'] 208 b_stage = b_data['Stage'] 209 b_momentum = b_data['Momentum'] 210 b_speed = b_data['Speed'] 211 b_elevation = b_data['Elevation'] 213 212 214 213 #----------------------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.