Changeset 1665
- Timestamp:
- Aug 1, 2005, 12:28:30 PM (20 years ago)
- 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 4 This module takes care of reading and writing datafiles such as topograhies, 5 model output, etc 6 7 8 Formats used within AnuGA: 11 9 12 10 .sww: Netcdf format for storing model output … … 209 207 #Class for storing output to e.g. visualisation 210 208 class 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. 212 217 """ 213 218
Note: See TracChangeset
for help on using the changeset viewer.