Changeset 3636
- Timestamp:
- Sep 20, 2006, 4:22:56 PM (17 years ago)
- Location:
- anuga_validation/okushiri_2005
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_validation/okushiri_2005/create_mesh.py
r3535 r3636 113 113 114 114 # 115 116 #Fine resolution. Needs alpha >= 0.001 115 117 116 base_resolution = 1 118 117 … … 122 121 mid = m.addRegionEN(point_mbottom[0]+.1, ybottom+.1) 123 122 mid.setMaxArea(0.0005*base_resolution) 124 123 125 124 126 125 inner = m.addRegionEN(island_3[0]+.1, island_3[1]+.1) 127 inner.setMaxArea(0.000 07*base_resolution)126 inner.setMaxArea(0.0003*base_resolution) 128 127 129 128 130 129 gulleys = m.addRegionEN(p0[0]+0.1, p0[1]+0.1) 131 gulleys.setMaxArea(0.0000 2*base_resolution)130 gulleys.setMaxArea(0.00005*base_resolution) 132 131 133 132 133 # From r 1709 11 August 2005 134 #base_resolution = 100 135 # 136 #ocean = m.addRegionEN(xleft+.1, ybottom+.1) 137 #ocean.setMaxArea(0.01*base_resolution) 138 # 139 #mid = m.addRegionEN(point_mbottom[0]+.1, ybottom+.1) 140 #mid.setMaxArea(0.001*base_resolution) 134 141 142 #inner = m.addRegionEN(island_3[0]+.1, island_3[1]+.1) 143 #inner.setMaxArea(0.0001*base_resolution) 144 145 146 #gulleys = m.addRegionEN(p0[0]+0.1, p0[1]+0.1) 147 #gulleys.setMaxArea(0.00001*base_resolution) 148 149 135 150 m.generateMesh('pzq28.0za1000000a') 136 151 -
anuga_validation/okushiri_2005/extract_timeseries.py
r3514 r3636 4 4 import sys 5 5 from os import sep 6 from caching import cache6 from anuga.caching import cache 7 7 8 8 sys.path.append('..'+sep+'..'+sep) … … 51 51 52 52 53 from anuga. pyvolution.util import file_function53 from anuga.abstract_2d_finite_volumes.util import file_function 54 54 from anuga.utilities.numerical_tools import ensure_numeric 55 55 gauge_values = [ensure_numeric(input_stage),
Note: See TracChangeset
for help on using the changeset viewer.