- Timestamp:
- Dec 12, 2007, 5:38:37 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/abstract_2d_finite_volumes/quantity.py
r4883 r4886 229 229 #(either from this module or C-extension) 230 230 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) 231 236 232 237 … … 1400 1405 1401 1406 1402 ##def limit_by_vertex(self):1403 ###Call correct module function1404 ###(either from this module or C-extension)1405 ## limit_by_vertex()1406 1407 1408 ##def limit_by_edge(self):1409 ###Call correct module function1410 ###(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) 1412 1417 1413 1418 def extrapolate_second_order(self): … … 1439 1444 compute_gradients,\ 1440 1445 limit_old,\ 1446 limit_by_vertex,\ 1447 limit_by_edge,\ 1441 1448 extrapolate_second_order,\ 1442 1449 interpolate_from_vertices_to_edges,\ 1450 interpolate_from_edges_to_vertices,\ 1443 1451 update 1444 1452 else:
Note: See TracChangeset
for help on using the changeset viewer.