Changes between Version 3 and Version 4 of AnugaWhatsNew


Ignore:
Timestamp:
May 28, 2010, 4:45:11 PM (14 years ago)
Author:
hudson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AnugaWhatsNew

    v3 v4  
    1 = Deprecated Functionality Removed in ANUGA v1.2 =
     1= What's New in ANUGA v1.2 =
     2Here are some new features from the upcoming release:
     3
     4
     5== Easy Imports ==
     6Instead of typing this at the start of every scenario:
     7{{{
     8from anuga.shallow_water.boundaries import Reflective_boundary,\
     9     Transmissive_momentum_set_stage_boundary,\
     10     Dirichlet_discharge_boundary,\
     11...
     12# Shallow water domain is the standard
     13from anuga.shallow_water.shallow_water_domain import Domain
     14}}}
     15
     16You can automatically import the shallow water domain and all the commonly used boundaries using this single line:
     17{{{
     18from anuga import *
     19}}}
     20
     21
     22You can also import common file conversion routines like so:
     23{{{
     24from anuga.file_conversion import *
     25}}}
     26
     27See the documentation for the list of functions and classes that are made available for import.
     28
     29== Deprecated Functionality Removed in ANUGA v1.2 ==
    230
    331Some old functionality has been removed from ANUGA in version 1.2. Please contact the ANUGA team if you have any issues migrating your code to the new version.
     
    634|| copy_code_files || Moved from abstract_2d_finite_volumes.util to utilities.file_utils as it was a generic function
    735|| csv2dict || Renamed to load_csv_as_dict: foo2bar is used for file-to-file conversions.
     36|| asc_csiro2sww || Renamed to esri2sww.