2011-05-21 07:29:35 -07:00
|
|
|
from itertools import product
|
|
|
|
|
2010-03-18 22:32:24 -07:00
|
|
|
import numpy as np
|
|
|
|
|
2011-09-17 14:38:49 -07:00
|
|
|
from interp.grid.delaunay import dgrid as basegrid
|
|
|
|
|
2011-03-23 10:16:50 -07:00
|
|
|
class rect_grid(basegrid):
|
2010-03-20 16:10:02 -07:00
|
|
|
def __init__(self, xres = 5, yres = 5):
|
2011-05-20 11:40:25 -07:00
|
|
|
xmin = 0.0
|
2010-03-20 16:10:02 -07:00
|
|
|
xmax = 1.0
|
|
|
|
xspan = xmax - xmin
|
|
|
|
xdel = xspan / float(xres - 1)
|
|
|
|
|
2011-05-20 11:40:25 -07:00
|
|
|
ymin = 0.0
|
2010-03-20 16:10:02 -07:00
|
|
|
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 )
|
2010-03-20 16:10:02 -07:00
|
|
|
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-05-20 11:40:25 -07:00
|
|
|
|
2011-03-23 23:27:30 -07:00
|
|
|
basegrid.__init__(self, verts, q)
|
2010-03-20 16:10:02 -07:00
|
|
|
|
2010-03-18 22:32:24 -07:00
|
|
|
|
2010-03-20 16:10:02 -07:00
|
|
|
class random_grid(rect_grid):
|
2010-10-23 16:06:57 -07:00
|
|
|
def __init__(self, num_verts = 10):
|
2010-03-18 22:32:24 -07:00
|
|
|
|
2010-10-23 16:06:57 -07:00
|
|
|
appx_side_res = int(np.sqrt(num_verts))
|
2010-04-24 17:26:44 -07:00
|
|
|
delta = 1.0 / float(appx_side_res)
|
2010-04-29 22:29:35 -07:00
|
|
|
|
2011-05-21 07:29:35 -07:00
|
|
|
# load up corners:
|
|
|
|
verts = [i for i in product((0,1), repeat = 2)]
|
2011-05-20 17:06:42 -07:00
|
|
|
|
|
|
|
for x in xrange(1,appx_side_res):
|
2010-04-24 17:26:44 -07:00
|
|
|
cur_x = x * delta
|
2010-04-29 22:29:35 -07:00
|
|
|
for cur_y in (0, 1):
|
|
|
|
new_point = [cur_x, cur_y]
|
2010-10-23 16:06:57 -07:00
|
|
|
verts.append(new_point)
|
2010-04-29 22:29:35 -07:00
|
|
|
|
2011-05-20 17:06:42 -07:00
|
|
|
for y in xrange(1,appx_side_res):
|
2010-04-29 22:29:35 -07:00
|
|
|
cur_y = y * delta
|
|
|
|
for cur_x in (0, 1):
|
2010-04-24 17:26:44 -07:00
|
|
|
new_point = [cur_x, cur_y]
|
2010-10-23 16:06:57 -07:00
|
|
|
verts.append(new_point)
|
2010-03-18 22:32:24 -07:00
|
|
|
|
2011-05-20 17:06:42 -07:00
|
|
|
verts.extend(np.random.random((num_verts - 4*appx_side_res, 2)))
|
2010-03-18 22:32:24 -07:00
|
|
|
|
2011-05-20 17:06:42 -07:00
|
|
|
q = np.zeros(len(verts))
|
|
|
|
basegrid.__init__(self, np.array(verts), q)
|