Changeset 1237 for inundation/ga/storm_surge/pyvolution-parallel/domain.py
- Timestamp:
- Apr 20, 2005, 5:41:03 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/ga/storm_surge/pyvolution-parallel/domain.py
r1232 r1237 430 430 self.distribute_to_vertices_and_edges() 431 431 432 #Initialize boundary values 433 self.update_boundary() 432 434 433 435 #Or maybe restore from latest checkpoint … … 439 441 440 442 while True: 443 444 #Compute fluxes across each element edge 445 self.compute_fluxes() 446 447 #Update timestep to fit yieldstep and finaltime 448 self.update_timestep(yieldstep, finaltime) 449 450 #Update conserved quantities 451 self.update_conserved_quantities() 452 453 #Update vertex and edge values 454 self.distribute_to_vertices_and_edges() 455 441 456 #Update boundary values 442 457 self.update_boundary() 443 444 #Compute fluxes across each element edge445 self.compute_fluxes()446 447 #Update timestep to fit yieldstep and finaltime448 self.update_timestep(yieldstep, finaltime)449 450 #Update conserved quantities451 self.update_conserved_quantities()452 453 #Update vertex and edge values454 self.distribute_to_vertices_and_edges()455 458 456 459 #Update time
Note: See TracChangeset
for help on using the changeset viewer.