Changeset 3033 for inundation/parallel
- Timestamp:
- May 31, 2006, 3:45:38 PM (19 years ago)
- Location:
- inundation/parallel
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/parallel/documentation/report.tex
r2808 r3033 63 63 \include{parallel} 64 64 \include{results} 65 \include{visualisation}66 65 \include{code} 67 66 -
inundation/parallel/parallel_shallow_water.py
r2813 r3033 114 114 """Calculate local timestep 115 115 """ 116 117 116 118 117 #Compute minimal timestep on local process 119 118 Domain.update_timestep(self, yieldstep, finaltime) … … 149 148 150 149 151 152 153 150 self.communication_reduce_time += time.time()-t0 154 155 156 151 157 152 -
inundation/parallel/run_parallel_merimbula_test.py
r2909 r3033 83 83 # read in the test files 84 84 85 #filename = 'test-100.tsh'86 filename = 'merimbula_10785.tsh'85 filename = 'test-100.tsh' 86 # filename = 'merimbula_10785.tsh' 87 87 nx = numprocs 88 88 ny = 1 … … 91 91 92 92 domain_full = pmesh_to_domain_instance(filename, Advection_Domain) 93 #domain_full.set_quantity('stage', Set_Stage(200.0,300.0,1.0))94 domain_full.set_quantity('stage', Set_Stage(756000.0,756500.0,4.0))93 domain_full.set_quantity('stage', Set_Stage(200.0,300.0,1.0)) 94 # domain_full.set_quantity('stage', Set_Stage(756000.0,756500.0,4.0)) 95 95 96 96 nodes, triangles, boundary, triangles_per_proc, quantities =\ … … 151 151 152 152 try: 153 domain.initialise_visualiser(rect=rect)153 # domain.initialise_visualiser(rect=rect) 154 154 #domain.visualiser.coloring['stage'] = True 155 155 #domain.visualiser.scale_z['stage'] = 0.2 … … 160 160 from norms import linf_norm 161 161 162 #yieldstep = 1163 #finaltime = 4000162 yieldstep = 1 163 finaltime = 200 164 164 165 yieldstep = 1000166 finaltime = 50000165 #yieldstep = 1000 166 #finaltime = 50000 167 167 168 168 for t in domain.evolve(yieldstep = yieldstep, finaltime = finaltime):
Note: See TracChangeset
for help on using the changeset viewer.