- Timestamp:
- May 15, 2005, 10:25:56 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/ga/storm_surge/parallel/run_parallel_advection.py
r1387 r1393 11 11 from mesh_factory import rectangular 12 12 13 points, vertices, boundary = rectangular(30, 30) 13 N = 4 14 M = 4 15 16 points, vertices, boundary, ghosts = rectangular_with_ghosts(N, M) 17 18 19 print ghosts 14 20 15 21 #Create advection domain with direction (1,-1) … … 47 53 48 54 #Check that the boundary value gets propagated to all elements 49 for t in domain.evolve(yieldstep = 0.01, finaltime = 1.5):55 for t in domain.evolve(yieldstep = 0.01, finaltime = 0.01): 50 56 domain.write_time()
Note: See TracChangeset
for help on using the changeset viewer.