Changeset 3678 for anuga_core/source/anuga/examples/netherlands.py
- Timestamp:
- Oct 1, 2006, 6:55:46 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/examples/netherlands.py
r3659 r3678 15 15 Transmissive_boundary, Constant_height, Constant_stage 16 16 17 from anuga. mesh_factory import rectangular_cross17 from anuga.abstract_2d_finite_volumes.mesh_factory import rectangular_cross 18 18 from Numeric import array 19 #fromvtk_realtime_visualiser import Visualiser19 from anuga.visualiser.vtk_realtime_visualiser import Visualiser 20 20 21 21 class Weir: … … 83 83 N = 130 #size = 33800 84 84 N = 600 #Size = 720000 85 N = 5085 N = 100 86 86 87 87 … … 96 96 97 97 domain.check_integrity() 98 99 #Setup order and all the beta's for the limiters (these should become defaults 98 100 domain.default_order = 2 99 #domain.beta_h=0 101 domain.beta_w = 1.0 102 domain.beta_w_dry = 0.2 103 domain.beta_uh = 1.0 104 domain.beta_uh_dry = 0.2 105 domain.beta_vh = 1.0 106 domain.beta_vh_dry = 0.2 100 107 101 108 #Output params
Note: See TracChangeset
for help on using the changeset viewer.