Edits to some comments.

这个提交包含在:
Craig Warren
2016-05-05 13:50:53 +01:00
父节点 900f3ec7f6
当前提交 400eb717f7

查看文件

@@ -89,7 +89,7 @@ class Waveform:
waveform = ramp * np.sin(2 * np.pi * self.freq * time)
elif self.type == 'impulse':
# time < G.dt condition required to do impulsive magnetic dipole
# time < dt condition required to do impulsive magnetic dipole
if time == 0 or time < dt:
waveform = 1
elif time >= dt: