Changeset 7877 for trunk/anuga_work


Ignore:
Timestamp:
Jun 29, 2010, 11:26:45 AM (15 years ago)
Author:
James Hudson
Message:

Moved all development files into trunk.

Location:
trunk/anuga_work
Files:
5 edited
2 copied

Legend:

Unmodified
Added
Removed
  • trunk/anuga_work/production/australia_ph2/perth/project.py

    r7010 r7877  
    4141starttime=0             # start time for simulation
    4242finaltime=60000 # final time for simulation
    43 setup = 'final_30'         # This can be one of three values
     43setup = 'trial'         # This can be one of three values
    4444                        #    trial - coarsest mesh, fast
    4545                        #    basic - coarse mesh
     
    186186
    187187# create paths generated from environment variables.
     188print os.getenv(ENV_INUNDATIONHOME)
    188189home = join(os.getenv(ENV_INUNDATIONHOME), 'data') # Absolute path for data folder
    189190muxhome = os.getenv(ENV_MUXHOME)
  • trunk/anuga_work/production/australia_ph2/perth/setup_model.py

    r7010 r7877  
    1010
    1111from os.path import join, exists
    12 from anuga.utilities.polygon import read_polygon, number_mesh_triangles
     12from anuga.geometry.polygon import read_polygon, number_mesh_triangles
    1313
    1414import project
  • trunk/anuga_work/production/new_south_wales/batemans_bay/setup_model.py

    r7045 r7877  
    1010
    1111from os.path import join, exists
    12 from anuga.utilities.polygon import read_polygon, number_mesh_triangles
     12from anuga.geometry.polygon import read_polygon, number_mesh_triangles
    1313
    1414import project
  • trunk/anuga_work/production/tweed_heads/project.py

    r7479 r7877  
    3232finaltime=100         # final time for simulation
    3333
    34 setup = 'final'         # This can be one of three values
     34setup = 'trial'         # This can be one of three values
    3535                        #    trial - coarsest mesh, fast
    3636                        #    basic - coarse mesh
     
    143143# Environment variable names.
    144144# The inundation directory, not the data directory.
    145 ENV_INUNDATIONHOME = 'INUNDATIONHOME'
     145ENV_INUNDATIONHOME = '/home/james/Projects/anuga/anuga_work/production'
    146146
    147147# Path to MUX data
    148 ENV_MUXHOME = 'MUXHOME'
     148ENV_MUXHOME = '/home/james/Projects/anuga/anuga_work/production'
    149149
    150150#-------------------------------------------------------------------------------
     
    167167
    168168# create paths generated from environment variables.
    169 home = join(os.getenv(ENV_INUNDATIONHOME), 'data') # Absolute path for data folder
    170 muxhome = os.getenv(ENV_MUXHOME)
     169home = ENV_INUNDATIONHOME # Absolute path for data folder
     170muxhome = ENV_MUXHOME
    171171   
    172172# check various directories/files that must exist
  • trunk/anuga_work/production/tweed_heads/setup_model.py

    r7479 r7877  
    1010
    1111from os.path import join, exists
    12 from anuga.utilities.polygon import read_polygon, number_mesh_triangles
    13 from anuga.shallow_water.data_manager import csv2polygons
     12from anuga.geometry.polygon import read_polygon, number_mesh_triangles
     13from anuga.file.csv_file import load_csv_as_polygons as csv2polygons
    1414import project
    1515
Note: See TracChangeset for help on using the changeset viewer.