Changeset 819


Ignore:
Timestamp:
Feb 1, 2005, 5:06:31 AM (20 years ago)
Author:
ole
Message:

Comments

Location:
inundation/ga/storm_surge
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • inundation/ga/storm_surge/README.txt

    r576 r819  
    1 This is the root-Subversion directory for the Storm Surge
     1This is the root-Subversion directory for the ANUGA Inundation
    22Software Development project conducted by
    33
    44Stephen Roberts (ANU)
    55Ole Nielsen (GA)
     6Duncan Gray (GA)
    67Christopher Zoppou (GA)
    7 Duncan Gray (GA)
    88
    9 This is the top directory for the storm surge project developed at the
     9
     10This is the top directory for the inundation project developed at the
    1011Risk Assessment Methods Project at Geoscience Australia and
    1112Mathematical Sciences Institute at the Australian National University.
  • inundation/ga/storm_surge/pmesh/load_mesh/loadASCII.py

    r721 r819  
    296296def clean_line(line,delimiter):     
    297297    """Remove whitespace
     298    FIXME (Ole): ... or rather: Remove empty fields?
     299    I believe this could also be done by simply allowing delimiter to None.
    298300    """
    299301    #print ">%s" %line
  • inundation/ga/storm_surge/pyvolution/domain.py

    r750 r819  
    138138        The values will be stored in elements following their
    139139        internal ordering.
     140       
     141        #FIXME (Ole): I suggest the following interface
     142        set_quantity(name, X, location, region)
     143        where
     144            name: Name of quantity
     145            X:
     146              -Compatible list,
     147              -Numeric array,
     148              -const or function (see below)
     149              -another quantity Q or an expression of the form
     150              a*Q+b, where a is a scalar or a compatible array or a quantity
     151              Q is a quantity
     152              b is either a scalar, a quantity or a compatible array
     153            location: Where values are to be stored.
     154                      Permissible options are: vertices, edges, centroid
     155            region: Identify subset of triangles. Permissible values are
     156                    - tag name (refers to tagged region)
     157                    - indices (refers to specific triangles)
     158                    - polygon (identifies region)
     159                   
     160            This should work for all values of X
     161           
     162
     163
    140164        """
    141165
Note: See TracChangeset for help on using the changeset viewer.