Changeset 7312


Ignore:
Timestamp:
Jul 20, 2009, 3:00:27 PM (15 years ago)
Author:
ole
Message:

Clarified uniquely stored vertices

Location:
anuga_core
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/documentation/user_manual/anuga_user_manual.tex

    r7283 r7312  
    19291929value per vertex using averaging.
    19301930
    1931 \code{flag} may be \code{True} (meaning do not smooth vertex values) or \code{False}.
    1932 
    1933 \code{reduction} defines the smoothing operation if \code{flag} is \code{True}.  If not
     1931\code{flag} may be \code{True} (meaning allow surface to be discontinuous) or \code{False} (meaning smooth vertex values).
     1932
     1933\code{reduction} defines the smoothing operation if \code{flag} is \code{False}.  If not
    19341934supplied, \code{reduction} is assumed to be \code{mean}.
    19351935
  • anuga_core/source/anuga/shallow_water/shallow_water_domain.py

    r7276 r7312  
    245245    def set_store_vertices_uniquely(self, flag, reduction=None):
    246246        """Decide whether vertex values should be stored uniquely as
    247         computed in the model or whether they should be reduced to one
    248         value per vertex using self.reduction.
    249         """
    250 
    251         # FIXME (Ole): how about using the word continuous vertex values?
     247        computed in the model (True) or whether they should be reduced to one
     248        value per vertex using self.reduction (False).
     249        """
     250
     251        # FIXME (Ole): how about using the word "continuous vertex values" or
     252        # "continuous stage surface"
    252253        self.smooth = not flag
    253254
Note: See TracChangeset for help on using the changeset viewer.