Changeset 8133
- Timestamp:
- Mar 9, 2011, 10:22:50 AM (14 years ago)
- Location:
- trunk/anuga_core/source/anuga
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/__init__.py
r8129 r8133 124 124 from anuga.shallow_water.sww_interrogate import get_flow_through_cross_section 125 125 126 127 128 #--------------------------- 129 # Operators 130 #--------------------------- 131 from anuga.operators.base_operator import Operator 132 133 #--------------------------- 134 # Structures 135 #--------------------------- 136 from anuga.structures.structure_operator import Structure_operator 137 from anuga.structures.boyd_box_operator import Boyd_box_operator 138 from anuga.structures.boyd_pipe_operator import Boyd_pipe_operator 139 140 #--------------------------- 141 # User Access Functions 142 #--------------------------- 143 144 from anuga.utilities.system_tools import get_user_name, get_host_name, get_revision_number 145 146 147 126 148 127 149 #----------------------------- … … 198 220 need to be closed, but their points must be specified in a counter-clockwise 199 221 order. 200 201 222 223 hole_tags is a list of tag segment dictionaries. 202 224 203 225 This function does not allow segments to share points - use underlying … … 321 343 322 344 323 #--------------------------- 324 # Operators 325 #--------------------------- 326 from anuga.operators.operator import Operator 327 328 #--------------------------- 329 # Structures 330 #--------------------------- 331 from anuga.structures.structure_operator import Structure_operator 332 from anuga.structures.boyd_box_operator import Boyd_box_operator 333 from anuga.structures.boyd_pipe_operator import Boyd_pipe_operator 334 335 #--------------------------- 336 # User Access Functions 337 #--------------------------- 338 339 from anuga.utilities.system_tools import get_user_name, get_host_name, get_revision_number 340 341 342 345 346 347 -
trunk/anuga_core/source/anuga/operators/__init__.py
r8128 r8133 1 1 """ 2 Generic utility classes not concerned with the specifics ofANUGA.2 operator classes for ANUGA. 3 3 4 Utility functions for managing files, numerical constants, and generic5 mathematical and programming idioms.6 4 """ 7 5 … … 11 9 import sys 12 10 sys.path += __path__ 11
Note: See TracChangeset
for help on using the changeset viewer.