Added base coordinate properties for use with rx_step.

这个提交包含在:
Craig Warren
2016-05-06 16:31:44 +01:00
父节点 8100a8a110
当前提交 b17b702b4b

查看文件

@@ -21,16 +21,13 @@ class Rx(object):
availableoutputs = ['Ex', 'Ey', 'Ez', 'Hx', 'Hy', 'Hz', 'Ix', 'Iy', 'Iz']
def __init__(self, xcoord=None, ycoord=None, zcoord=None):
"""
Args:
xcoord (float): x-coordinate of location in model.
ycoord (float): y-coordinate of location in model.
zcoord (float): z-coordinate of location in model.
"""
def __init__(self):
self.ID = None
self.outputs = []
self.xcoord = xcoord
self.ycoord = ycoord
self.zcoord = zcoord
self.xcoord = None
self.ycoord = None
self.zcoord = None
self.xcoordbase = None
self.ycoordbase = None
self.zcoordbase = None