Changeset 819
- Timestamp:
- Feb 1, 2005, 5:06:31 AM (20 years ago)
- Location:
- inundation/ga/storm_surge
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/ga/storm_surge/README.txt
r576 r819 1 This is the root-Subversion directory for the Storm Surge1 This is the root-Subversion directory for the ANUGA Inundation 2 2 Software Development project conducted by 3 3 4 4 Stephen Roberts (ANU) 5 5 Ole Nielsen (GA) 6 Duncan Gray (GA) 6 7 Christopher Zoppou (GA) 7 Duncan Gray (GA)8 8 9 This is the top directory for the storm surge project developed at the 9 10 This is the top directory for the inundation project developed at the 10 11 Risk Assessment Methods Project at Geoscience Australia and 11 12 Mathematical Sciences Institute at the Australian National University. -
inundation/ga/storm_surge/pmesh/load_mesh/loadASCII.py
r721 r819 296 296 def clean_line(line,delimiter): 297 297 """Remove whitespace 298 FIXME (Ole): ... or rather: Remove empty fields? 299 I believe this could also be done by simply allowing delimiter to None. 298 300 """ 299 301 #print ">%s" %line -
inundation/ga/storm_surge/pyvolution/domain.py
r750 r819 138 138 The values will be stored in elements following their 139 139 internal ordering. 140 141 #FIXME (Ole): I suggest the following interface 142 set_quantity(name, X, location, region) 143 where 144 name: Name of quantity 145 X: 146 -Compatible list, 147 -Numeric array, 148 -const or function (see below) 149 -another quantity Q or an expression of the form 150 a*Q+b, where a is a scalar or a compatible array or a quantity 151 Q is a quantity 152 b is either a scalar, a quantity or a compatible array 153 location: Where values are to be stored. 154 Permissible options are: vertices, edges, centroid 155 region: Identify subset of triangles. Permissible values are 156 - tag name (refers to tagged region) 157 - indices (refers to specific triangles) 158 - polygon (identifies region) 159 160 This should work for all values of X 161 162 163 140 164 """ 141 165
Note: See TracChangeset
for help on using the changeset viewer.