smbinterp/interp/grid/DD.py

62 lines
1.5 KiB
Python
Raw Normal View History

2011-03-23 10:15:05 -07:00
from interp.grid.delaunay import dgrid as basegrid
from interp.tools import baker_exact_2D as exact_func
import numpy as np
class rect_grid(basegrid):
def __init__(self, xres = 5, yres = 5):
xmin = -1.0
xmax = 1.0
xspan = xmax - xmin
xdel = xspan / float(xres - 1)
ymin = -1.0
ymay = 1.0
yspan = ymay - ymin
ydel = yspan / float(yres - 1)
2010-10-23 16:06:57 -07:00
verts = []
2011-05-19 14:44:21 -07:00
q = np.zeros( xres * yres )
for x in xrange(xres):
cur_x = xmin + (x * xdel)
for y in xrange(yres):
cur_y = ymin + (y * ydel)
2010-10-23 16:06:57 -07:00
verts.append([cur_x, cur_y])
2011-03-23 23:27:30 -07:00
basegrid.__init__(self, verts, q)
class random_grid(rect_grid):
2010-10-23 16:06:57 -07:00
def __init__(self, num_verts = 10):
verts = []
q = []
r = np.random
2010-10-23 16:06:57 -07:00
appx_side_res = int(np.sqrt(num_verts))
delta = 1.0 / float(appx_side_res)
for x in xrange(appx_side_res + 1):
cur_x = x * delta
for cur_y in (0, 1):
new_point = [cur_x, cur_y]
2010-10-23 16:06:57 -07:00
verts.append(new_point)
q.append(exact_func(new_point))
for y in xrange(appx_side_res + 1):
cur_y = y * delta
for cur_x in (0, 1):
new_point = [cur_x, cur_y]
2010-10-23 16:06:57 -07:00
verts.append(new_point)
q.append(exact_func(new_point))
2010-10-23 16:06:57 -07:00
for i in xrange(num_verts):
cur_x = r.rand()
cur_y = r.rand()
2010-10-23 16:06:57 -07:00
verts.append([cur_x, cur_y])
q.append( exact_func( (cur_x, cur_y) ) )
2011-03-23 23:27:30 -07:00
basegrid.__init__(self, verts, q)
2010-10-23 16:06:57 -07:00
self.verts = np.array(self.verts)
self.q = np.array(self.q)