Changeset 2528
- Timestamp:
- Mar 12, 2006, 10:03:28 PM (19 years ago)
- Location:
- inundation
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/pyvolution/config.py
r1839 r2528 1 """Module where global model parameters are set1 """Module where global pyvolution model parameters are set 2 2 """ 3 3 4 epsilon = 1.0e-125 4 6 default_boundary_tag = 'exterior' 5 #FIXME (Ole): Temporary access to global config file 6 from anuga_config import epsilon, default_boundary_tag 7 7 8 8 9 10 #FIXME (Ole): More of these may need to be moved to anuga_config.py 9 11 time_format = '%d/%m/%y %H:%M:%S' 10 12 … … 88 90 89 91 if sys.platform == 'win32': 90 #default_datadir = 'C:\grohm_output'91 92 default_datadir = '.' 92 93 else: 93 #default_datadir = os.path.expanduser('~'+os.sep+'grohm_output')94 94 default_datadir = '.' 95 95 -
inundation/pyvolution/general_mesh.py
r2407 r2528 183 183 FIXME, we might make that the default. 184 184 FIXME Maybe use keyword: continuous = False for this condition? 185 FIXME - Maybe use something referring to unique vertices? 185 186 186 187 -
inundation/pyvolution/test_general_mesh.py
r1751 r2528 1 1 #!/usr/bin/env python 2 3 #FIXME (Ole): Maxe this test independent of anything that inherits from General_mesh (namely shallow_water) 4 2 5 3 6 import unittest -
inundation/pyvolution/test_mesh.py
r2502 r2528 1 1 #!/usr/bin/env python 2 2 3 #FIXME: Seperate the tests for mesh and general_mesh 3 4 5 #FIXME: Seperate the tests for mesh and general_mesh 6 7 #FIXME (Ole): Maxe this test independent of anything that inherits from General_mesh (namely shallow_water) 4 8 5 9 import unittest -
inundation/utilities/compile.py
r2508 r2528 268 268 """ 269 269 270 #from config import use_extensions271 270 272 271 from os.path import splitext
Note: See TracChangeset
for help on using the changeset viewer.