Changeset 8891
- Timestamp:
- Jun 10, 2013, 2:48:22 AM (12 years ago)
- Location:
- trunk/anuga_core/source/anuga_validation_tests/Other_references/radial_dam_break_wet
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga_validation_tests/Other_references/radial_dam_break_wet/produce_results.py
r8739 r8891 11 11 run_validation_script('radial_dam_break.py') 12 12 run_validation_script('plot_results.py') 13 run('python', 'produce_report.py') 13 14 14 15 def clean(): -
trunk/anuga_core/source/anuga_validation_tests/Other_references/radial_dam_break_wet/radial_dam_break.py
r8668 r8891 107 107 108 108 #------------------------------------------------------------------------------ 109 # Produce a documentation of parameters 110 #------------------------------------------------------------------------------ 111 parameter_file=open('parameters.tex', 'w') 112 parameter_file.write('\\begin{verbatim}\n') 113 from pprint import pprint 114 pprint(domain.get_algorithm_parameters(),parameter_file,indent=4) 115 parameter_file.write('\\end{verbatim}\n') 116 parameter_file.close() 117 118 #------------------------------------------------------------------------------ 109 119 # Evolve system through time 110 120 #------------------------------------------------------------------------------ 111 112 121 for t in domain.evolve(yieldstep = 0.1, finaltime = 2.0): 113 122 #print domain.timestepping_statistics(track_speeds=True) -
trunk/anuga_core/source/anuga_validation_tests/Other_references/radial_dam_break_wet/results.tex
r8665 r8891 2 2 \section{Radial dam break on a wet bed} 3 3 4 A radial dam break test problem involving a wet bed. Should show a rarefaction fan and a shock. Note that the reference solution is found from the 1D FVM for SWE involving varying width and topography. See a paper in ANZIAM Journal (CTAC2010) by S. G. Roberts and P. Wilson, ``A well balanced scheme for the shallow water wave equations in open channels with (discontinuous) varying width and bed.''4 A radial dam break test problem involving a wet bed. Should show a rarefaction fan and a shock. Note that the reference solution is found from the 1D FVM for SWE involving varying width and topography. See a paper of Roberts and Wilson~\cite{RW2011}. 5 5 6 6 … … 9 9 We should see excellent agreement between the reference and numerical solutions. 10 10 11 \begin{figure} [h]11 \begin{figure} 12 12 \begin{center} 13 13 \includegraphics[width=0.9\textwidth]{stage_plot.png} … … 17 17 18 18 19 \begin{figure} [h]19 \begin{figure} 20 20 \begin{center} 21 21 \includegraphics[width=0.9\textwidth]{rmom_plot.png} … … 25 25 26 26 27 \begin{figure} [h]27 \begin{figure} 28 28 \begin{center} 29 29 \includegraphics[width=0.9\textwidth]{rvel_plot.png}
Note: See TracChangeset
for help on using the changeset viewer.