Ignore:
Timestamp:
Mar 2, 2010, 2:31:30 PM (15 years ago)
Author:
Leharne Fountain
Message:

updates to mandurah and bunbury storm surge models

Location:
anuga_work/production/mandurah_storm_surge_2009
Files:
1 added
1 deleted
7 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/mandurah_storm_surge_2009/build_elevation.py

    r7627 r7647  
    8787G1 = geospatial_data['m_peel_aoi'].clip(project.elevation_clip_box)
    8888G2 = geospatial_data['ph10m_ss'].clip_outside(project.elevation_clip_box)
    89 G3 = geospatial_data['MA-46893-SNDS_AHD.csv']
    90 G4 = geospatial_data['MS0205HY_AHD.csv']
    91 G5 = geospatial_data['MS0404_AHD.csv']
    92 G6 = geospatial_data['YU0403HY_AHD.csv']
    93 G7 = geospatial_data['original_data_ss.csv']
     89G3 = geospatial_data['DpiU1A03_ss.csv']
     90G4 = geospatial_data['MA-46893-SNDS_AHD.csv']
     91G5 = geospatial_data['MS0205HY_AHD.csv']
     92G6 = geospatial_data['MS0404_AHD.csv']
     93G7 = geospatial_data['YU0403HY_AHD.csv']
     94G8 = geospatial_data['original_data_ss.csv']
    9495
    95 G = G1 + G2 + G3 + G4 + G5 + G6 + G7
     96G = G1 + G2 + G3 + G4 + G5 + G6 + G7 + G8
    9697       
    9798print 'Export combined DEM file'
  • anuga_work/production/mandurah_storm_surge_2009/gems_comparison/build_elevation_GEMS.py

    r7628 r7647  
    8282print 'project_GEMS.elevation_clip_box', project_GEMS.elevation_clip_box
    8383
    84 G1 = geospatial_data['Man_25m'].clip(project_GEMS.elevation_clip_box)
     84G1 = geospatial_data['man_25m_prj'].clip(project_GEMS.elevation_clip_box)
    8585G2 = geospatial_data['man10m_ss'].clip_outside(project_GEMS.elevation_clip_box)
    8686
  • anuga_work/production/mandurah_storm_surge_2009/gems_comparison/project_GEMS.py

    r7628 r7647  
    6262#-------------------------------------------------------------------------------
    6363
    64 output_comment = [setup, tide, event, '_GEMS_compare']    # event_number will have to
     64output_comment = [setup, tide, event, 'GEMS_compare']    # event_number will have to
    6565                                                                                                # change to something relevent
    6666                                                                                                # for storm surge
     
    7777##                        'm_peel_10m.asc'
    7878##                        'm_harvey_10m.asc']
    79 ascii_grid_filenames = ['Man_25m',              # this is the latest 25m DEM from GEMS
     79ascii_grid_filenames = ['man_25m_prj',          # this is the latest 25m DEM from GEMS
    8080                                                'man10m_ss']    # this is to fill in areas not covered by the
    8181                                        # GEMS grid and is derived from the 10m resampled LiDAR from DoT,
  • anuga_work/production/mandurah_storm_surge_2009/gems_comparison/run_model_GEMS.py

    r7628 r7647  
    110110print domain.statistics()
    111111
    112 domain.starttime(project_GEMS.starttime)
     112domain.set_starttime(project_GEMS.starttime)
    113113domain.set_name(project_GEMS.scenario_name)
    114114domain.set_datadir(project_GEMS.output_run)
  • anuga_work/production/mandurah_storm_surge_2009/get_timeseries.py

    r7614 r7647  
    1919directory = project.output_folder
    2020
    21 time_dir1 = '20090508_150215_run_final_0_51469_lfountai'
    22 time_dir2 = '20090511_161526_run_final_1.1_51469_kvanputt'
    23 time_dir3 = '20090511_165539_run_final_0_50863_lfountai'
    24 time_dir4 = '20090521_220101_run_final_1.1_50863_kvanputt'
    25 time_dir5 = '20090522_164526_run_final_0_51392_lfountai'
    26 time_dir6 = '20090522_164640_run_final_1.1_51392_lfountai'
    27 time_dir7 = '20090518_154710_run_final_0_50994_lfountai'
    28 time_dir8 = '20090519_160510_run_final_1.1_50994_lfountai'
    29 time_dir9 = '20090522_164948_run_final_0_51423_lfountai'
    30 time_dir10 = '20090522_165600_run_final_1.1_51423_lfountai'
     21time_dir1 = '20091229_100831_run_storm_surge_final_0_alby_waves_lfountai'
    3122
    32 time_dirs = [time_dir1, time_dir2, time_dir3, time_dir4, time_dir5,
    33              time_dir6, time_dir7, time_dir8, time_dir9, time_dir10]
     23time_dirs = [time_dir1]
    3424
    3525for time_dir in time_dirs:
  • anuga_work/production/mandurah_storm_surge_2009/project.py

    r7627 r7647  
    8686# Format for point is x,y,elevation (with header)
    8787# Don't use these for comparison with GEMS inundation
    88 point_filenames = ['MA-46893-SNDS_AHD.csv',     # These files contain inf-fill bathymetry for
     88point_filenames = ['DpiU1A03_ss.csv',           # Bathymetric LiDAR data from DPI, clipped to bounding polygon
     89                  'MA-46893-SNDS_AHD.csv',      # These files contain inf-fill bathymetry for
    8990                  'MS0205HY_AHD.csv',           # the Peel & Harvey estuaries, as well as around
    9091                  'MS0404_AHD.csv',             # the canals
  • anuga_work/production/mandurah_storm_surge_2009/run_model.py

    r7614 r7647  
    110110print domain.statistics()
    111111
     112domain.set_starttime(project.starttime)
    112113domain.set_name(project.scenario_name)
    113114domain.set_datadir(project.output_run)
Note: See TracChangeset for help on using the changeset viewer.