Changeset 1665


Ignore:
Timestamp:
Aug 1, 2005, 12:28:30 PM (19 years ago)
Author:
ole
Message:

Fixed lost comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • inundation/ga/storm_surge/pyvolution/data_manager.py

    r1661 r1665  
    1 """Functions to store and retrieve data for the Shallow Water Wave equation.
    2 There are two kinds of data
    3 
    4   1: Constant data: Vertex coordinates and field values. Stored once
    5   2: Variable data: Conserved quantities. Stored once per timestep.
    6 
    7 All data is assumed to reside at vertex locations.
    8 
    9 
    10 Formats used within ANUGA:
     1"""datamanager.py - input output for AnuGA
     2
     3
     4This module takes care of reading and writing datafiles such as topograhies,
     5model output, etc
     6
     7
     8Formats used within AnuGA:
    119
    1210.sww: Netcdf format for storing model output
     
    209207#Class for storing output to e.g. visualisation
    210208class Data_format_sww(Data_format):
    211     """Interface to native NetCDF format (.sww)
     209    """Interface to native NetCDF format (.sww) for storing model output
     210
     211    There are two kinds of data
     212
     213    1: Constant data: Vertex coordinates and field values. Stored once
     214    2: Variable data: Conserved quantities. Stored once per timestep.
     215
     216    All data is assumed to reside at vertex locations.
    212217    """
    213218
Note: See TracChangeset for help on using the changeset viewer.