Changeset 2528


Ignore:
Timestamp:
Mar 12, 2006, 10:03:28 PM (18 years ago)
Author:
ole
Message:

Began preparing foor moving mesh codes from pyvolution to separate dir as per ticket:57

Location:
inundation
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • inundation/pyvolution/config.py

    r1839 r2528  
    1 """Module where global model parameters are set
     1"""Module where global pyvolution model parameters are set
    22"""
    33
    4 epsilon = 1.0e-12
    54
    6 default_boundary_tag = 'exterior'
     5#FIXME (Ole): Temporary access to global config file
     6from anuga_config import epsilon, default_boundary_tag
    77
    88
     9
     10#FIXME (Ole): More of these may need to be moved to anuga_config.py
    911time_format = '%d/%m/%y %H:%M:%S'
    1012
     
    8890
    8991if sys.platform == 'win32':
    90     #default_datadir = 'C:\grohm_output'
    9192    default_datadir = '.'
    9293else:
    93     #default_datadir = os.path.expanduser('~'+os.sep+'grohm_output')
    9494    default_datadir = '.'
    9595
  • inundation/pyvolution/general_mesh.py

    r2407 r2528  
    183183        FIXME, we might make that the default.
    184184        FIXME Maybe use keyword: continuous = False for this condition?
     185        FIXME - Maybe use something referring to unique vertices?
    185186
    186187       
  • inundation/pyvolution/test_general_mesh.py

    r1751 r2528  
    11#!/usr/bin/env python
     2
     3#FIXME (Ole): Maxe this test independent of anything that inherits from General_mesh (namely shallow_water)
     4
    25
    36import unittest
  • inundation/pyvolution/test_mesh.py

    r2502 r2528  
    11#!/usr/bin/env python
    22
    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)
    48
    59import unittest
  • inundation/utilities/compile.py

    r2508 r2528  
    268268    """
    269269
    270     #from config import use_extensions
    271270
    272271    from os.path import splitext
Note: See TracChangeset for help on using the changeset viewer.