Changeset 1786
- Timestamp:
- Aug 30, 2005, 5:54:52 PM (19 years ago)
- Location:
- production/karratha_2005
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
production/karratha_2005/create_mesh.py
r1784 r1786 60 60 point_se, 61 61 point_ne, 62 point_n e]62 point_nw] 63 63 64 64 … … 69 69 70 70 71 base_resolution = 1 71 base_resolution = 100000 72 72 73 inner = m.addRegionEN(point_s e[0]+1, point_se[1]+1)73 inner = m.addRegionEN(point_sw[0]+1, point_sw[1]+1) 74 74 inner.setMaxArea(base_resolution) 75 75 -
production/karratha_2005/run_karratha.py
r1785 r1786 34 34 35 35 domain.set_name(project.basename) 36 domain.set_datadir(project.outputdir) 37 domain.store = True 38 36 39 print "Number of triangles = ", len(domain) 37 40 print 'The extent is ', domain.get_extent() … … 39 42 #IC 40 43 domain.set_quantity('stage', 0) 41 44 domain.set_quantity('elevation', 45 filename = demname + '.pts', 46 use_cache = True, 47 verbose = True) 42 48 43 49 #BC
Note: See TracChangeset
for help on using the changeset viewer.