Changeset 7312
- Timestamp:
- Jul 20, 2009, 3:00:27 PM (15 years ago)
- Location:
- anuga_core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/documentation/user_manual/anuga_user_manual.tex
r7283 r7312 1929 1929 value per vertex using averaging. 1930 1930 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 not1931 \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 1934 1934 supplied, \code{reduction} is assumed to be \code{mean}. 1935 1935 -
anuga_core/source/anuga/shallow_water/shallow_water_domain.py
r7276 r7312 245 245 def set_store_vertices_uniquely(self, flag, reduction=None): 246 246 """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" 252 253 self.smooth = not flag 253 254
Note: See TracChangeset
for help on using the changeset viewer.