Changeset 7876


Ignore:
Timestamp:
Jun 29, 2010, 9:17:15 AM (14 years ago)
Author:
hudson
Message:

Updates to docs

Location:
trunk/anuga_core/source/anuga
Files:
6 edited

Legend:

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

    r2126 r7876  
    1 """Make directory available as a Python package
     1"""
     2    A set of modules which is used to build a geometrical representation
     3    of the test scenario domain.
     4   
     5    It contains functions for fitting data across an arbitrary terrain height
     6    mesh.
    27"""
    38
  • trunk/anuga_core/source/anuga/advection/__init__.py

    r7737 r7876  
    1 """Make directory available as a Python package
     1"""
     2    A simple implementation of the shallow wave equation, mainly for test
     3    purposes.
    24"""
    35
  • trunk/anuga_core/source/anuga/caching/__init__.py

    r1743 r7876  
    1 """Make directory available as a Python package
     1"""
     2    Generic caching module.
     3   
     4    Allows for the disk caching of the results of any function. If a function
     5    is cached, its return values will be stored on the local hard drive.
     6    If the function is called with identical parameters in the future, the
     7    cached result will be returned.
    28"""
    39
  • trunk/anuga_core/source/anuga/fit_interpolate/__init__.py

    r2656 r7876  
    1 """Make directory available as a Python package
     1"""
     2    2D mesh fitting and interpolation.
     3   
     4    Maps quantity data over a 2D mesh. It calculates a smooth gradation of
     5    data over the mesh, and allows data to be sampled at any given point.
    26"""
    37
  • trunk/anuga_core/source/anuga/geometry/__init__.py

    r7841 r7876  
    1 """Make directory available as a Python package
     1"""
     2    Geometry classes.
     3   
     4    Classes that represent 2D geometry: polygons, quadtrees, and bounding boxes.
    25"""
    36
  • trunk/anuga_core/source/anuga/utilities/__init__.py

    r2309 r7876  
    1 """Make directory available as a Python package
     1"""
     2    Generic utility classes not concerned with the specifics of ANUGA.
     3   
     4    Utility functions for managing files, numerical constants, and generic
     5    mathematical and programming idioms.
    26"""
    37
Note: See TracChangeset for help on using the changeset viewer.