Changeset 2563 for inundation/fit_interpolate/test_interpolate.py
- Timestamp:
- Mar 21, 2006, 10:58:32 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/fit_interpolate/test_interpolate.py
r2394 r2563 20 20 from coordinate_transforms.geo_reference import Geo_reference 21 21 from shallow_water import Domain, Transmissive_boundary #, mean 22 from util import mean22 from utilities.numerical_tools import mean 23 23 from data_manager import get_dataobject 24 24 … … 623 623 #Check basic interpolation of one quantity using averaging 624 624 #(no interpolation points or spatial info) 625 from util import mean 626 I = Interpolation_interface(time, [mean(Q[0,:]), 625 I = Interpolation_function(time, [mean(Q[0,:]), 627 626 mean(Q[1,:]), 628 627 mean(Q[2,:])]) … … 702 701 703 702 #Check interpolation of one quantity using interpolaton points 704 I = Interpolation_ interface(time, Q,703 I = Interpolation_function(time, Q, 705 704 vertex_coordinates = points, 706 705 triangles = triangles, … … 770 769 771 770 #Check interpolation of one quantity using interpolaton points) 772 I = Interpolation_ interface(time, Q,771 I = Interpolation_function(time, Q, 773 772 vertex_coordinates = points, 774 773 triangles = triangles,
Note: See TracChangeset
for help on using the changeset viewer.