Changeset 9180


Ignore:
Timestamp:
Jun 18, 2014, 2:58:31 PM (10 years ago)
Author:
steve
Message:

Adding files for qgis project

Location:
trunk/anuga_core/demos/cairns
Files:
6 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/demos/cairns/ExportResults.py

    r8728 r9180  
    99
    1010print 'output dir:', name
    11 which_var = 3
     11which_var = 0
    1212
    1313if which_var == 0:    # Stage
     
    2525if which_var == 3:    # Speed
    2626    outname = name + '_speed'
    27     quantityname = '(xmomentum**2 + ymomentum**2)**0.5/(stage-elevation+1.e-30)'  #Speed
     27    quantityname = '(xmomentum**2 + ymomentum**2)**0.5/(stage-elevation+1.e-3)'  #Speed
    2828
    2929if which_var == 4:    # Elevation
     
    3737        quantity=quantityname,
    3838        cellsize=100,     
    39         easting_min=project.eastingmin,
    40         easting_max=project.eastingmax,
    41         northing_min=project.northingmin,
    42         northing_max=project.northingmax,       
     39        #easting_min=project.eastingmin,
     40        #easting_max=project.eastingmax,
     41        #northing_min=project.northingmin,
     42        #northing_max=project.northingmax,       
    4343        reduction=max,
    4444        verbose=True)
  • trunk/anuga_core/demos/cairns/project.py

    r8846 r9180  
    7979#------------------------------------------------------------------------------
    8080eastingmin = 363000
     81#eastingmax = 418000
    8182eastingmax = 418000
    8283northingmin = 8026600
  • trunk/anuga_core/demos/cairns/run_cairns.py

    r9172 r9180  
    117117    Bw = anuga.Transmissive_n_momentum_zero_t_momentum_set_stage_boundary(
    118118                        domain=domain,
    119                         function=lambda t: [(60<t<3660)*50, 0, 0])
     119                        function=lambda t: [(60<t<3660)*10, 0, 0])
    120120
    121121    domain.set_boundary({'ocean_east': Bw,
  • trunk/anuga_core/demos/cairns/run_parallel_cairns.py

    r9172 r9180  
    132132    Bw = anuga.Transmissive_n_momentum_zero_t_momentum_set_stage_boundary(
    133133                        domain=domain,
    134                         function=lambda t: [(60<t<3660)*50, 0, 0])
     134                        function=lambda t: [(60<t<3660)*10.0, 0, 0])
    135135
    136136    domain.set_boundary({'ocean_east': Bw,
Note: See TracChangeset for help on using the changeset viewer.