Changeset 4773
- Timestamp:
- Oct 31, 2007, 4:56:02 PM (17 years ago)
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_validation/uq_flume_2007/project.py
r4750 r4773 6 6 velocity_x_filename = "velocity_x.csv" 7 7 velocity_y_filename = "velocity_y.csv" 8 experiment_vel_filename = "velocity_x_experiment.csv" 9 experiment_depth_filename = "depth_experiment.csv" 8 10 9 11 -
anuga_validation/uq_flume_2007/run_dam.py
r4750 r4773 1 1 """Script for running a dam break simulation of UQ's dam break tank. 2 3 The simulation is based on the simulation Matt has presented and will 4 form part of the ANUGA validation paper. 5 6 i want to compare the stage at .4m and the velocity at .45m. 2 7 3 8 … … 33 38 def main(): 34 39 35 slope s = [0]36 friction s = [0.01] #can enter multiple frictions eg [0.00, 0.01]37 inital_depth s = [0.2] #can enter multiple initial depths eg [0.1, 0.2]38 gate_position s = [0.75]40 slope= 0 41 friction = 0.01 42 inital_depth = 0.2 43 gate_position = 0.75 39 44 40 scenario(0, 0.01, 0.02, 0.75)45 return scenario(slope, friction, inital_depth, gate_position) 41 46 42 47 … … 49 54 create_mesh.generate(project.mesh_filename, 50 55 gate_position, 51 is_course=True) # this creates the mesh52 #is_course=False) # this creates the mesh56 #is_course=True) # this creates the mesh 57 is_course=False) # this creates the mesh 53 58 54 59 head,tail = path.split(project.mesh_filename) … … 101 106 print 'finished' 102 107 103 points = [[0.4,0.2] ]108 points = [[0.4,0.2], [0.45,0.2]] 104 109 #------------------------------------------------------------------------- 105 110 # Calculate gauge info … … 108 113 interpolate_sww2csv( project.basename +".sww", 109 114 points, 110 project.depth_filename + '.csv',111 project.velocity_x_filename + '.csv',112 project.velocity_y_filename + '.csv')115 project.depth_filename , 116 project.velocity_x_filename, 117 project.velocity_y_filename ) 113 118 114 119 -
anuga_work/publications/anuga_2007/anuga_validation.tex
r4768 r4773 483 483 This successful replication of the tsunami wave tank simulation on a 484 484 complex 3D beach is a positive first step in validating the \ANUGA{} 485 modelling capability. Subsequent validation will be conducted as 486 additional datasets become available. 487 485 modelling capability. 486 487 488 \begin{figure}[htbp] 489 \centerline{\includegraphics[width=4in]{uq-flume-depth.eps}} 490 \caption{Comparison of wave tank and \ANUGA{} water height at .4 m 491 from the gate}\label{fig:uq-flume-depth} 492 \end{figure} 493 494 \begin{figure}[htbp] 495 \centerline{\includegraphics[width=4in]{uq-flume-velocity.eps}} 496 \caption{Comparison of wave tank and \ANUGA{} water velocity at .45 m 497 from the gate}\label{fig:uq-flume-depth} 498 \end{figure} 499 500 Flume data from the University of Queensland has also been used for 501 validating \ANUGA{}. The experiments were carried out at the Gordon 502 McKay Hydraulics Laboratory at St Lucia. The Flume was set up for 503 Dam-break experiments, having a water reservior at one end. The flume 504 was glass-sided, 3m long, 0.4m in wide, and 0.4m deep (check 505 depth), with a PVC bottom. The reservoir in the flume was 0.75m long. 506 For this experiment the reservoir water was 0.2m deep. At time zero 507 the reservoir gate is opened and the water flows into the other side 508 of the flume. 488 509 489 510 \section{Conclusions}
Note: See TracChangeset
for help on using the changeset viewer.