From 48140eb1c934bddd7e114207c2457b12e6909893 Mon Sep 17 00:00:00 2001 From: craig-warren Date: Wed, 12 Oct 2016 12:55:32 +0100 Subject: [PATCH] Source steps and receivers steps changed to list not a tuple. --- gprMax/grid.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gprMax/grid.py b/gprMax/grid.py index 9efa6636..1f964aa2 100644 --- a/gprMax/grid.py +++ b/gprMax/grid.py @@ -106,8 +106,8 @@ class FDTDGrid(Grid): self.magneticdipoles = [] self.transmissionlines = [] self.rxs = [] - self.srcsteps = (0, 0, 0) - self.rxsteps = (0, 0, 0) + self.srcsteps = [0, 0, 0] + self.rxsteps = [0, 0, 0] self.snapshots = [] def initialise_geometry_arrays(self):