Changeset 8890


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

Updating the radial dam break with dry area.

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

    r8668 r8890  
    107107##print 'The triangle ID containing the point of origin is = ',n_point
    108108
     109
     110#------------------------------------------------------------------------------
     111# Produce a documentation of parameters
     112#------------------------------------------------------------------------------
     113parameter_file=open('parameters.tex', 'w')
     114parameter_file.write('\\begin{verbatim}\n')
     115from pprint import pprint
     116pprint(domain.get_algorithm_parameters(),parameter_file,indent=4)
     117parameter_file.write('\\end{verbatim}\n')
     118parameter_file.close()
     119
    109120#------------------------------------------------------------------------------
    110121# Evolve system through time
    111122#------------------------------------------------------------------------------
    112 
    113123for t in domain.evolve(yieldstep = 0.1, finaltime = 2.0):
    114124    #print domain.timestepping_statistics(track_speeds=True)
  • trunk/anuga_core/source/anuga_validation_tests/Other_references/radial_dam_break_dry/results.tex

    r8668 r8890  
    22\section{Radial dam break on a dry bed}
    33
    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.''
     4A 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}.
    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.