Changeset 8209 for trunk/anuga_core/source/anuga/file/sww.py
- Timestamp:
- Sep 8, 2011, 5:30:37 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/file/sww.py
r8144 r8209 45 45 self.domain = domain 46 46 47 # Exclude ghosts in case this is a parallel domain 48 self.number_of_nodes = domain.number_of_full_nodes 49 self.number_of_volumes = domain.number_of_full_triangles 47 # Probably should exclude ghosts in case this is a parallel domain 48 49 self.number_of_nodes = domain.number_of_nodes 50 self.number_of_volumes = domain.number_of_triangles 50 51 #self.number_of_volumes = len(domain) 51 52 … … 109 110 domain.starttime, 110 111 self.number_of_volumes, 111 self.domain.number_of_ full_nodes,112 self.domain.number_of_nodes, 112 113 description=description, 113 114 smoothing=domain.smooth,
Note: See TracChangeset
for help on using the changeset viewer.