Changeset 8890
- Timestamp:
- Jun 10, 2013, 2:47:29 AM (12 years ago)
- Location:
- trunk/anuga_core/source/anuga_validation_tests/Other_references/radial_dam_break_dry
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga_validation_tests/Other_references/radial_dam_break_dry/produce_results.py
r8739 r8890 11 11 run_validation_script('radial_dam_break.py') 12 12 run_validation_script('plot_results.py') 13 13 run('python', 'produce_report.py') 14 14 15 def clean(): 15 16 autoclean() -
trunk/anuga_core/source/anuga_validation_tests/Other_references/radial_dam_break_dry/radial_dam_break.py
r8668 r8890 107 107 ##print 'The triangle ID containing the point of origin is = ',n_point 108 108 109 110 #------------------------------------------------------------------------------ 111 # Produce a documentation of parameters 112 #------------------------------------------------------------------------------ 113 parameter_file=open('parameters.tex', 'w') 114 parameter_file.write('\\begin{verbatim}\n') 115 from pprint import pprint 116 pprint(domain.get_algorithm_parameters(),parameter_file,indent=4) 117 parameter_file.write('\\end{verbatim}\n') 118 parameter_file.close() 119 109 120 #------------------------------------------------------------------------------ 110 121 # Evolve system through time 111 122 #------------------------------------------------------------------------------ 112 113 123 for t in domain.evolve(yieldstep = 0.1, finaltime = 2.0): 114 124 #print domain.timestepping_statistics(track_speeds=True) -
trunk/anuga_core/source/anuga_validation_tests/Other_references/radial_dam_break_dry/results.tex
r8668 r8890 2 2 \section{Radial dam break on a dry bed} 3 3 4 A radial dam break test problem involving a dry bed. Should show a rarefaction fan. 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 dry bed. Should show a rarefaction fan. 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.