Changeset 7999


Ignore:
Timestamp:
Sep 3, 2010, 8:28:55 PM (14 years ago)
Author:
habili
Message:

added classes pertaining to structures

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/source/anuga/__init__.py

    r7874 r7999  
    4343from anuga.file.ungenerate import load_ungenerate
    4444
    45 from anuga.geometry.polygon import read_polygon, plot_polygons, polygon_area
     45from anuga.geometry.polygon import read_polygon, plot_polygons, polygon_area, \
     46                                   inside_polygon, polygon_area
    4647from anuga.geometry.polygon_function import Polygon_function
    4748
    4849from anuga.abstract_2d_finite_volumes.pmesh2domain import \
    4950                                            pmesh_to_domain_instance
    50 
    5151
    5252from anuga.utilities.system_tools import file_length
    5353from anuga.utilities.sww_merge import sww_merge
    5454from anuga.utilities.file_utils import copy_code_files
     55from anuga.utilities.numerical_tools import safe_acos as acos
    5556
    5657from anuga.geometry.polygon import read_polygon
     
    296297import logging as log
    297298
    298 from anuga.config import use_psyco
     299from anuga.config import use_psyco, g, velocity_protection
    299300if use_psyco:
    300301    # try using psyco if available
     
    313314        #psyco.background() # attempt to profile code - only compile most used
    314315       
    315 
    316 
    317 
    318 
     316       
     317#---------------------------
     318# Structures
     319#---------------------------
     320from anuga.structures.structure_operator import Structure_operator
     321from anuga.structures.boyd_box_operator import Boyd_box_operator
     322from anuga.structures.boyd_pipe_operator import Boyd_pipe_operator
     323
     324
     325
Note: See TracChangeset for help on using the changeset viewer.