Ignore:
Timestamp:
Dec 12, 2007, 5:38:37 PM (17 years ago)
Author:
steve
Message:

Working towards an edge limiter (at least in quantity)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/abstract_2d_finite_volumes/quantity.py

    r4883 r4886  
    229229        #(either from this module or C-extension)
    230230        interpolate_from_vertices_to_edges(self)
     231
     232    def interpolate_from_edges_to_vertices(self):
     233        #Call correct module function
     234        #(either from this module or C-extension)
     235        interpolate_from_edges_to_vertices(self)
    231236
    232237
     
    14001405
    14011406
    1402 ##     def limit_by_vertex(self):
    1403 ##         #Call correct module function
    1404 ##         #(either from this module or C-extension)
    1405 ##         limit_by_vertex()
    1406 
    1407 
    1408 ##     def limit_by_edge(self):
    1409 ##         #Call correct module function
    1410 ##         #(either from this module or C-extension)
    1411 ##         limit_by_edge()       
     1407    def limit_by_vertex(self):
     1408        #Call correct module function
     1409        #(either from this module or C-extension)
     1410        limit_by_vertex(self)
     1411
     1412
     1413    def limit_by_edge(self):
     1414        #Call correct module function
     1415        #(either from this module or C-extension)
     1416        limit_by_edge(self)       
    14121417
    14131418    def extrapolate_second_order(self):
     
    14391444         compute_gradients,\
    14401445         limit_old,\
     1446         limit_by_vertex,\
     1447         limit_by_edge,\
    14411448         extrapolate_second_order,\
    14421449         interpolate_from_vertices_to_edges,\
     1450         interpolate_from_edges_to_vertices,\
    14431451         update   
    14441452else:
Note: See TracChangeset for help on using the changeset viewer.