Changeset 7276 for anuga_core/source/anuga/config.py
- Timestamp:
- Jun 30, 2009, 2:07:41 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/config.py
r7055 r7276 4 4 import os 5 5 import sys 6 6 7 7 8 ################################################################################ … … 162 163 # Too large (100) creates 'flopping' water 163 164 # Too small (0) creates 'creep' 164 165 165 166 maximum_froude_number = 100.0 # To be used in limiters. 166 167 … … 183 184 184 185 ################################################################################ 186 # NetCDF-specific type constants. Used when defining NetCDF file variables. 187 ################################################################################ 188 189 netcdf_char = 'c' 190 netcdf_byte = 'b' 191 netcdf_int = 'i' 192 netcdf_float = 'd' 193 netcdf_float64 = 'd' 194 netcdf_float32 = 'f' 195 196 ################################################################################ 185 197 # Dynamically-defined constants. 186 198 ################################################################################ … … 193 205 # Code to set the write mode depending on 194 206 # whether Scientific.IO supports large NetCDF files 195 s = """from Scientific.IO.NetCDF import NetCDFFile; fid = NetCDFFile('tmpfilenamexx', 'wl')""" 207 s = """ 208 import os 209 from Scientific.IO.NetCDF import NetCDFFile 210 fid = NetCDFFile('tmpfilenamexx', 'wl') 211 fid.close() 212 os.remove('tmpfilenamexx') 213 """ 196 214 197 215 # Need to run in a separate process due an
Note: See TracChangeset
for help on using the changeset viewer.