Changeset 8891


Ignore:
Timestamp:
Jun 10, 2013, 2:48:22 AM (12 years ago)
Author:
mungkasi
Message:

Updating the radial dam break on wet area.

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  
    1111    run_validation_script('radial_dam_break.py')
    1212    run_validation_script('plot_results.py')
     13    run('python', 'produce_report.py')       
    1314
    1415def clean():
  • trunk/anuga_core/source/anuga_validation_tests/Other_references/radial_dam_break_wet/radial_dam_break.py

    r8668 r8891  
    107107
    108108#------------------------------------------------------------------------------
     109# Produce a documentation of parameters
     110#------------------------------------------------------------------------------
     111parameter_file=open('parameters.tex', 'w')
     112parameter_file.write('\\begin{verbatim}\n')
     113from pprint import pprint
     114pprint(domain.get_algorithm_parameters(),parameter_file,indent=4)
     115parameter_file.write('\\end{verbatim}\n')
     116parameter_file.close()
     117
     118#------------------------------------------------------------------------------
    109119# Evolve system through time
    110120#------------------------------------------------------------------------------
    111 
    112121for t in domain.evolve(yieldstep = 0.1, finaltime = 2.0):
    113122    #print domain.timestepping_statistics(track_speeds=True)
  • trunk/anuga_core/source/anuga_validation_tests/Other_references/radial_dam_break_wet/results.tex

    r8665 r8891  
    22\section{Radial dam break on a wet bed}
    33
    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.''
     4A 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}.
    55
    66
     
    99We should see excellent agreement between the reference and numerical solutions.
    1010
    11 \begin{figure}[h]
     11\begin{figure}
    1212\begin{center}
    1313\includegraphics[width=0.9\textwidth]{stage_plot.png}
     
    1717
    1818
    19 \begin{figure}[h]
     19\begin{figure}
    2020\begin{center}
    2121\includegraphics[width=0.9\textwidth]{rmom_plot.png}
     
    2525
    2626
    27 \begin{figure}[h]
     27\begin{figure}
    2828\begin{center}
    2929\includegraphics[width=0.9\textwidth]{rvel_plot.png}
Note: See TracChangeset for help on using the changeset viewer.