Added gaussianprime and gaussiandoubleprime waveforms which are direct 1st and 2nd derivatives of the gaussian waveform, i.e. they don't share the same centre frequency.

这个提交包含在:
Craig Warren
2017-06-21 14:33:01 +01:00
父节点 0a28aeed62
当前提交 3329df6015
共有 4 个文件被更改,包括 21 次插入8 次删除

查看文件

@@ -19,7 +19,7 @@ def hertzian_dipole_fs(iterations, dt, dxdydz, rx):
# Waveform
w = Waveform()
w.type = 'gaussiandot'
w.type = 'gaussianprime'
w.amp = 1
w.freq = 1e9
@@ -31,7 +31,7 @@ def hertzian_dipole_fs(iterations, dt, dxdydz, rx):
# Waveform first derivative
wdot = Waveform()
wdot.type = 'gaussiandotdot'
wdot.type = 'gaussiandoubleprime'
wdot.amp = w.amp
wdot.freq = w.freq