From 4e4ee0747aef44703b6658ede489a54ae102f01d Mon Sep 17 00:00:00 2001 From: Paul Garlick Date: Wed, 23 Oct 2019 17:33:46 +0100 Subject: use cell-vertex co-ordinates instead of cell-centre co-ordinates. --- makeBoundary.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'makeBoundary.py') diff --git a/makeBoundary.py b/makeBoundary.py index d79c280..764952c 100755 --- a/makeBoundary.py +++ b/makeBoundary.py @@ -181,11 +181,11 @@ num_panels = len(panel) # number of panels across boundary # convert marker co-ordinates to array indices: marker_ind = [0] for i in range(len(markers)): - marker_ind.append(int(markers[i]/dX - 1/2)) + marker_ind.append(int(markers[i]/dX)) if location == 'left' or location == 'right': - marker_ind.append(nrows-1) + marker_ind.append(nrows) elif location == 'top' or location == 'bottom': - marker_ind.append(ncols-1) + marker_ind.append(ncols) # print(marker_ind) -- cgit