- Timestamp:
- Aug 14, 2008, 10:26:06 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/shallow_water/shallow_water_domain.py
r5644 r5657 1088 1088 def __init__(self, filename, domain, 1089 1089 mean_stage=0.0, 1090 time_thinning=1, 1090 time_thinning=1, 1091 boundary_polygon=None, 1092 default_boundary=None, 1091 1093 use_cache=False, 1092 verbose=False, 1093 boundary_polygon=None): 1094 verbose=False): 1094 1095 """Constructor 1095 1096 … … 1107 1108 the speed of a model run that you are setting up 1108 1109 and testing. 1110 1111 default_boundary: Must be either None or an instance of a 1112 class descending from class Boundary. 1113 This will be used in case model time exceeds 1114 that available in the underlying data. 1115 1109 1116 use_cache: 1110 1117 verbose: … … 1115 1122 self.file_boundary = File_boundary(filename, domain, 1116 1123 time_thinning=time_thinning, 1124 boundary_polygon=boundary_polygon, 1125 default_boundary=default_boundary, 1117 1126 use_cache=use_cache, 1118 verbose=verbose ,1119 boundary_polygon=boundary_polygon) 1127 verbose=verbose) 1128 1120 1129 1121 1130 # Record information from File_boundary
Note: See TracChangeset
for help on using the changeset viewer.