Changeset 9308 for trunk/anuga_core/validation_tests/analytical_exact
- Timestamp:
- Aug 31, 2014, 9:05:25 PM (11 years ago)
- Location:
- trunk/anuga_core/validation_tests/analytical_exact
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/validation_tests/analytical_exact/dam_break_dry/numerical_dam_break_dry.py
r9241 r9308 73 73 #------------------------------------------------------------------------------ 74 74 domain.set_flow_algorithm(alg) 75 #domain.set_CFL(cfl)76 75 77 76 #------------------------------------------------------------------------------ … … 100 99 101 100 102 #=============================================================================== 103 ##from anuga.visualiser import RealtimeVisualiser 104 ##vis = RealtimeVisualiser(domain) 105 ##vis.render_quantity_height("stage", zScale =h0*500, dynamic=True) 106 ##vis.colour_height_quantity('stage', (0.0, 0.5, 1.0)) 107 ##vis.start() 108 #=============================================================================== 109 110 111 112 if myid == 0: 113 #------------------------------------------------------------------------------ 114 # Produce a documentation of parameters 115 #------------------------------------------------------------------------------ 116 parameter_file=open('parameters.tex', 'w') 117 parameter_file.write('\\begin{verbatim}\n') 118 from pprint import pprint 119 pprint(domain.get_algorithm_parameters(),parameter_file,indent=4) 120 parameter_file.write('\\end{verbatim}\n') 121 parameter_file.close() 122 101 #------------------------------------------------------------------------- 102 # Produce a documentation of parameters 103 #------------------------------------------------------------------------- 104 from anuga.validation_utilities import save_parameters_tex 105 save_parameters_tex(domain) 123 106 124 107 #=================================================================================== -
trunk/anuga_core/validation_tests/analytical_exact/paraboloid_basin/results.tex
r8801 r9308 9 9 The analytical solution is 10 10 \begin{equation} 11 u(x,y,t) = \frac{\omega r A sin{(\omega t)}}{ 2 \left[1 -A \cos(\omega t)\right] },11 u(x,y,t) = \frac{\omega r A \sin{(\omega t)}}{ 2 \left[1 -A \cos(\omega t)\right] }, 12 12 \end{equation} 13 13 \begin{equation} -
trunk/anuga_core/validation_tests/analytical_exact/supercritical_over_bump/produce_results.py
r9228 r9308 4 4 args = anuga.get_args() 5 5 6 produce_report('numerical_su bcritical.py', args=args)6 produce_report('numerical_supercritical.py', args=args) 7 7 8 8
Note: See TracChangeset
for help on using the changeset viewer.