Ignore:
Timestamp:
May 28, 2007, 6:08:39 PM (18 years ago)
Author:
sexton
Message:

minor change to inundation_damage + updates to damage scripts for all scenarios

Location:
anuga_work/production/onslow_2006
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/onslow_2006/export_results.py

    r4479 r4504  
    55from os import sep
    66
    7 time_dir = '20070507_215717_run_final_1.5_nbartzis' # HAT 1 in Dampier 10000 yr
     7#time_dir = '20070507_215717_run_final_1.5_nbartzis' # HAT 1 in Dampier 10000 yr
    88#time_dir = '20070517_061654_run_final_0.0_nbartzis' # MSL 1 in Dampier 10000 yr
    99#time_dir = '' # HAT 1 in Broome 10000 yr
     
    1515#time_dir = '' # HAT 1 in Exmouth 10000 yr
    1616#time_dir = '' # MSL 1 in Exmouth 10000 yr
    17 cellsize = 25
     17time_dir = '20060704_063005' # 2006 simulation HAT Mw9
     18#cellsize = 30
     19cellsize = 250
    1820timestep = None
    1921directory = project.outputdir
    2022#name = directory + time_dir + sep + project.scenario_name
    21 name = directory+time_dir+sep+project.scenario_name
     23#name = directory+time_dir+sep+project.scenario_name
     24name = directory+time_dir+sep+'source'
    2225
    23 is_parallel = True
     26is_parallel = False
     27#is_parallel = True
    2428if is_parallel == True: nodes = 4
    2529print 'output dir:', name
    2630
    27 var = [2,3,4] # depth and speed
     31#var = [2,3,4] # depth and speed
     32var = [3] # depth and speed
    2833
    2934for which_var in var:
     
    7176                    timestep = timestep,
    7277                    cellsize = cellsize,     
    73                     easting_min = project.e_min_area,
    74                     easting_max = project.e_max_area,
    75                     northing_min = project.n_min_area,
    76                     northing_max = project.n_max_area,       
     78                    #easting_min = project.e_min_area,
     79                    #easting_max = project.e_max_area,
     80                    #northing_min = project.n_min_area,
     81                    #northing_max = project.n_max_area,       
    7782                    reduction = max,
    7883                    verbose = True,
  • anuga_work/production/onslow_2006/project.py

    r4477 r4504  
    133133# region to export
    134134
    135 e_min_area = 300000
    136 e_max_area = 310000
    137 n_min_area = 7600000
    138 n_max_area = 7610000
     135e_min_area = 290500
     136e_max_area = 321500
     137n_min_area = 7601550
     138n_max_area = 7620000
    139139
    140140# region to export to make elevation map: JS 22/9/06 - NOTE, this won't
  • anuga_work/production/onslow_2006/run_building_inundation.py

    r4314 r4504  
    2020
    2121from anuga.damage_modelling.inundation_damage import add_depth_and_momentum2csv, inundation_damage
    22 import project
     22import project_urs
    2323
    2424# Inputs
    25 #timestampdir = '20060704_063005' # HAT
    26 #timestampdir = '20060704_063112' # LAT
    27 #timestampdir = '20060704_063234' # MSL
    28 timestampdir = '20060515_001733' # DTED MSL
    29 file_loc = project.outputdir + timestampdir + sep
    30 swwfile = file_loc + project.basename + '.sww'
    31 buildings_filename = project.buildings_filename
    32 buildings_filename_out = file_loc + project.buildings_filename_out
     25#timestampdir = '20070507_215717_run_final_1.5_nbartzis' # HAT
     26timestampdir = '20070518_021050_run_final_0.0_nbartzis' # MSL
     27file_loc = project_urs.output_dir + timestampdir + sep
     28swwfile = file_loc + project_urs.scenario_name #+ '.sww'
     29buildings_filename = project_urs.buildings_filename
     30buildings_filename_out = file_loc + project_urs.buildings_filename_out
    3331
    3432#add_depth_and_momentum2csv(swwfile, buildings_filename, buildings_filename_out)
Note: See TracChangeset for help on using the changeset viewer.