[5162] | 1 | """Simple water flow example using ANUGA |
---|
| 2 | |
---|
| 3 | Will Powers example of a simple sinusoidal wave which showed diffusive effects of |
---|
| 4 | thefirst order and standard second order method. Problem resolved if "rk2" timestepping |
---|
| 5 | and higher beta = 2 limiter used. Also new edge limiter with rk2 resolves problem |
---|
| 6 | """ |
---|
| 7 | |
---|
| 8 | #------------------------------------------------------------------------------ |
---|
| 9 | # Import necessary modules |
---|
| 10 | #------------------------------------------------------------------------------ |
---|
| 11 | |
---|
| 12 | import sys |
---|
| 13 | from anuga.abstract_2d_finite_volumes.mesh_factory import rectangular_cross |
---|
| 14 | from anuga.shallow_water import Domain |
---|
| 15 | from anuga.shallow_water import Reflective_boundary |
---|
| 16 | from anuga.shallow_water import Dirichlet_boundary |
---|
| 17 | from anuga.shallow_water import Time_boundary |
---|
| 18 | from anuga.shallow_water import Transmissive_boundary |
---|
| 19 | from anuga.shallow_water import Transmissive_Momentum_Set_Stage_boundary |
---|
| 20 | from anuga.shallow_water.data_manager import start_screen_catcher, copy_code_files |
---|
| 21 | |
---|
| 22 | from math import cos |
---|
| 23 | from Numeric import zeros, Float |
---|
| 24 | from time import localtime, strftime, gmtime |
---|
| 25 | from os import sep |
---|
| 26 | |
---|
| 27 | |
---|
| 28 | |
---|
| 29 | #------------------------------------------------------------------------------- |
---|
| 30 | # Copy scripts to time stamped output directory and capture screen |
---|
| 31 | # output to file |
---|
| 32 | #------------------------------------------------------------------------------- |
---|
| 33 | time = strftime('%Y%m%d_%H%M%S',localtime()) |
---|
| 34 | |
---|
| 35 | output_dir = 'wave_'+time |
---|
| 36 | output_file = 'wave' |
---|
| 37 | |
---|
| 38 | copy_code_files(output_dir,__file__) |
---|
| 39 | #start_screen_catcher(output_dir+sep) |
---|
| 40 | |
---|
[5306] | 41 | interactive_visualisation = False |
---|
| 42 | |
---|
[5162] | 43 | #------------------------------------------------------------------------------ |
---|
| 44 | # Setup domain |
---|
| 45 | #------------------------------------------------------------------------------ |
---|
[5300] | 46 | dx = 1000. |
---|
[5162] | 47 | dy = dx |
---|
| 48 | L = 100000. |
---|
| 49 | W = 10*dx |
---|
| 50 | |
---|
| 51 | # structured mesh |
---|
| 52 | points, vertices, boundary = rectangular_cross(int(L/dx), int(W/dy), L, W, (0.0, -W/2)) |
---|
| 53 | |
---|
| 54 | domain = Domain(points, vertices, boundary) |
---|
| 55 | |
---|
| 56 | domain.set_name(output_file) |
---|
| 57 | domain.set_datadir(output_dir) |
---|
| 58 | |
---|
| 59 | #------------------------------------------------------------------------------ |
---|
| 60 | # Setup Algorithm |
---|
| 61 | #------------------------------------------------------------------------------ |
---|
[5175] | 62 | domain.set_timestepping_method('rk2') |
---|
| 63 | domain.set_default_order(2) |
---|
[5162] | 64 | |
---|
[5175] | 65 | print domain.get_timestepping_method() |
---|
[5162] | 66 | |
---|
[5175] | 67 | domain.use_edge_limiter = True |
---|
[5300] | 68 | domain.tight_slope_limiters = False |
---|
| 69 | domain.use_centroid_velocities = False |
---|
[5162] | 70 | |
---|
[5175] | 71 | domain.CFL = 1.0 |
---|
[5162] | 72 | |
---|
[5300] | 73 | domain.beta_w = 1.0 |
---|
[5175] | 74 | domain.beta_w_dry = 0.0 |
---|
[5300] | 75 | domain.beta_uh = 1.0 |
---|
[5175] | 76 | domain.beta_uh_dry = 0.0 |
---|
[5300] | 77 | domain.beta_vh = 1.0 |
---|
[5175] | 78 | domain.beta_vh_dry = 0.0 |
---|
[5162] | 79 | |
---|
| 80 | |
---|
| 81 | #------------------------------------------------------------------------------ |
---|
| 82 | # Setup initial conditions |
---|
| 83 | #------------------------------------------------------------------------------ |
---|
| 84 | domain.set_quantity('elevation',-100.0) |
---|
| 85 | domain.set_quantity('friction', 0.00) |
---|
| 86 | domain.set_quantity('stage', 0.0) |
---|
| 87 | |
---|
| 88 | #----------------------------------------------------------------------------- |
---|
| 89 | # Setup boundary conditions |
---|
| 90 | #------------------------------------------------------------------------------ |
---|
| 91 | from math import sin, pi, exp |
---|
| 92 | Br = Reflective_boundary(domain) # Solid reflective wall |
---|
| 93 | Bt = Transmissive_boundary(domain) # Continue all values on boundary |
---|
| 94 | Bd = Dirichlet_boundary([1,0.,0.]) # Constant boundary values |
---|
| 95 | amplitude = 1 |
---|
| 96 | Bw = Time_boundary(domain=domain, # Time dependent boundary |
---|
| 97 | ## Sine wave |
---|
| 98 | f=lambda t: [(-amplitude*sin((1./300.)*t*2*pi)), 0.0, 0.0]) |
---|
| 99 | ## Sawtooth? |
---|
| 100 | # f=lambda t: [(-8.0*(sin((1./180.)*t*2*pi))+(1./2.)*sin((2./180.)*t*2*pi)+(1./3.)*sin((3./180.)*t*2*pi)), 0.0, 0.0]) |
---|
| 101 | ## Sharp rise, linear fall |
---|
| 102 | # f=lambda t: [(5.0*(-((t-0.)/300.)*(t<300.)-cos((t-300.)*2.*pi*(1./240.))*(t>=300. and t<420.)+(1.-(t-420.)/300.)*(t>=420. and t <720.))), 0.0, 0.0]) |
---|
| 103 | # f=lambda t: [amplitude*(1.-2.*(pi*(1./720.)*(t-720.))**2)/exp((pi*(1./720.)*(t-720.))**2) , 0.0, 0.0]) |
---|
| 104 | # f=lambda t: [(-8.0*sin((1./720.)*t*2*pi))*((t<720.)-0.5*(t<360.)), 0.0, 0.0]) |
---|
| 105 | |
---|
| 106 | # Associate boundary tags with boundary objects |
---|
| 107 | domain.set_boundary({'left': Bw, 'right': Bt, 'top': Br, 'bottom': Br}) |
---|
| 108 | |
---|
| 109 | |
---|
| 110 | #=============================================================================== |
---|
[5180] | 111 | if interactive_visualisation: |
---|
| 112 | from anuga.visualiser import RealtimeVisualiser |
---|
| 113 | vis = RealtimeVisualiser(domain) |
---|
| 114 | vis.render_quantity_height("stage", zScale =10000, dynamic=True) |
---|
| 115 | vis.colour_height_quantity('stage', (1.0, 0.5, 0.5)) |
---|
| 116 | vis.start() |
---|
[5162] | 117 | #=============================================================================== |
---|
| 118 | |
---|
| 119 | |
---|
| 120 | #------------------------------------------------------------------------------ |
---|
| 121 | # Evolve system through time |
---|
| 122 | #------------------------------------------------------------------------------ |
---|
| 123 | |
---|
| 124 | for t in domain.evolve(yieldstep = 50.0, finaltime = 60*60.): |
---|
| 125 | domain.write_time() |
---|
[5180] | 126 | if interactive_visualisation: |
---|
| 127 | vis.update() |
---|
[5162] | 128 | |
---|
[5180] | 129 | if interactive_visualisation: |
---|
| 130 | vis.evolveFinished() |
---|
| 131 | |
---|