Changeset 6577


Ignore:
Timestamp:
Mar 23, 2009, 10:52:41 AM (15 years ago)
Author:
jgriffin
Message:

different model runs; changed side boundary to transmissive

Location:
anuga_work/production/new_south_wales/batemans_bay
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/new_south_wales/batemans_bay/export_results_max.py

    r6552 r6577  
    2929##time_dirs = [time_dir1, time_dir2]#, time_dir3]
    3030
    31 time_dir1 = '20090306_165253_run_final_0_58368_jgriffin'
     31time_dir1 = '20090317_112148_run_final_0_58368_jgriffin'
    3232##time_dir2 = '20081211_162311_run_final_0_27255_alpha0.1_kvanputt'
    3333##time_dir3 = '20081211_162346_run_final_0_68693_alpha0.1_kvanputt'
     
    6363
    6464# one or more key strings from var_equations above
    65 var = ['elevation', 'stage', 'speed','depth']
     65var = ['stage','depth','speed','elevation']#, 'stage', 'speed','depth']
    6666
    6767######
  • anuga_work/production/new_south_wales/batemans_bay/project.py

    r6526 r6577  
    2727# One or all can be changed each time the run_model script is executed
    2828tide = 0                # difference between MSL and HAT
    29 event_number = 51414    # the event number or the mux file name
     29event_number = 58368    # the event number or the mux file name
    3030alpha = 0.1             # smoothing parameter for mesh
    3131friction=0.01           # manning's friction coefficient
    3232starttime=0             # start time for simulation
    33 finaltime=1000         # final time for simulation
     33finaltime=6000         # final time for simulation
    3434
    3535setup = 'final'         # This can be one of three values
     
    7878point_filenames = ['SD100031996_jgriffin_clip.csv',
    7979                   'tomaga_offshore_AHD_MGA_1997.csv',
    80                    'Batemans_BBHD_MGA_1995.csv']
     80                   'Batemans_BBHD_MGA_1995.csv',
     81                   'moruya_AHD_MGA_2000.csv']
    8182         
    8283
  • anuga_work/production/new_south_wales/batemans_bay/run_model.py

    r6427 r6577  
    141141                    domain, mean_stage=project.tide,
    142142                    time_thinning=1,
    143                     default_boundary=Bd,
     143                    default_boundary=Dirichlet_boundary([0, 0, 0]),
    144144                    boundary_polygon=bounding_polygon_sts,                   
    145145                    use_cache=True,
     
    147147
    148148domain.set_boundary({'back': Br,
    149                      'side': Bd,
     149                     'side': Bt,
    150150                     'ocean': Bf})
    151151
     
    156156t0 = time.time()
    157157for t in domain.evolve(yieldstep=project.yieldstep,
    158                        finaltime=project.finaltime,
     158                       finaltime=1440,
    159159                       skip_initial_step=False):
    160160    print domain.timestepping_statistics()
    161161    print domain.boundary_statistics(tags='ocean')
    162162
     163for t in domain.evolve(yieldstep=5,
     164                       finaltime=project.finaltime,
     165                       skip_initial_step=True):
     166    print domain.timestepping_statistics()
     167    print domain.boundary_statistics(tags='ocean')
     168
    163169print 'Simulation took %.2f seconds' % (time.time()-t0)
Note: See TracChangeset for help on using the changeset viewer.