Changeset 6839


Ignore:
Timestamp:
Apr 20, 2009, 1:55:31 PM (15 years ago)
Author:
kristy
Message:

updated scripts to test theory of no wave

Location:
anuga_work/production/geraldton/geraldton_rerun
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/geraldton/geraldton_rerun/project.py

    r6722 r6839  
    2626# Model specific parameters.
    2727# One or all can be changed each time the run_model script is executed
    28 tide = -0.4                # difference between MSL and HAT in metres
     28tide = 0                # difference between MSL and HAT in metres
    2929zone = 50               # specify zone of model
    3030#event_number = 27255    # the event number or the mux file name
     
    3333friction=0.01           # manning's friction coefficient
    3434starttime=0             # start time for simulation
    35 finaltime=80000         # final time for simulation
     35finaltime=1000         # final time for simulation
    3636
    3737setup = 'final'         # This can be one of three values
  • anuga_work/production/geraldton/geraldton_rerun/run_model.py

    r6569 r6839  
    149149Bt = Transmissive_stage_zero_momentum_boundary(domain)
    150150Bd = Dirichlet_boundary([project.tide, 0, 0])
     151Bno = Time_boundary(domain=domain, # Time dependent boundary
     152                    f=lambda t: [0.0, 0.0, 0.0])
    151153Bf = Field_boundary(project.event_sts+'.sts',
    152154                    domain, mean_stage=project.tide,
     
    159161domain.set_boundary({'back': Br,
    160162                     'side': Bt,
    161                      'ocean': Bf})
     163                     'ocean': Bno})
    162164
    163165#-------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.