Changeset 6839
- Timestamp:
- Apr 20, 2009, 1:55:31 PM (16 years ago)
- Location:
- anuga_work/production/geraldton/geraldton_rerun
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/geraldton/geraldton_rerun/project.py
r6722 r6839 26 26 # Model specific parameters. 27 27 # One or all can be changed each time the run_model script is executed 28 tide = -0.4# difference between MSL and HAT in metres28 tide = 0 # difference between MSL and HAT in metres 29 29 zone = 50 # specify zone of model 30 30 #event_number = 27255 # the event number or the mux file name … … 33 33 friction=0.01 # manning's friction coefficient 34 34 starttime=0 # start time for simulation 35 finaltime= 80000 # final time for simulation35 finaltime=1000 # final time for simulation 36 36 37 37 setup = 'final' # This can be one of three values -
anuga_work/production/geraldton/geraldton_rerun/run_model.py
r6569 r6839 149 149 Bt = Transmissive_stage_zero_momentum_boundary(domain) 150 150 Bd = Dirichlet_boundary([project.tide, 0, 0]) 151 Bno = Time_boundary(domain=domain, # Time dependent boundary 152 f=lambda t: [0.0, 0.0, 0.0]) 151 153 Bf = Field_boundary(project.event_sts+'.sts', 152 154 domain, mean_stage=project.tide, … … 159 161 domain.set_boundary({'back': Br, 160 162 'side': Bt, 161 'ocean': B f})163 'ocean': Bno}) 162 164 163 165 #-------------------------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.