你已经派生过 gprMax
镜像自地址
https://gitee.com/sunhf/gprMax.git
已同步 2025-08-07 23:14:03 +08:00
Restructured so this module can be imported as a package as well as used with command line arguments.
这个提交包含在:
@@ -25,42 +25,49 @@ from gprMax.exceptions import CmdInputError
|
|||||||
from gprMax.utilities import round_value
|
from gprMax.utilities import round_value
|
||||||
from gprMax.waveforms import Waveform
|
from gprMax.waveforms import Waveform
|
||||||
|
|
||||||
|
"""Plot built-in waveforms that can be used with sources."""
|
||||||
|
|
||||||
"""Plot built-in waveforms that can be used for sources."""
|
|
||||||
|
|
||||||
# Parse command line arguments
|
def check_timewindow(timewindow, dt):
|
||||||
parser = argparse.ArgumentParser(description='Plot built-in waveforms that can be used for sources.', usage='cd gprMax; python -m tools.plot_builtin_wave type amp freq timewindow dt')
|
"""Checks and sets time window and number of iterations.
|
||||||
parser.add_argument('type', help='type of waveform, e.g. gaussian, ricker etc...')
|
|
||||||
parser.add_argument('amp', type=float, help='amplitude of waveform')
|
|
||||||
parser.add_argument('freq', type=float, help='centre frequency of waveform')
|
|
||||||
parser.add_argument('timewindow', help='time window to view waveform')
|
|
||||||
parser.add_argument('dt', type=float, help='time step to view waveform')
|
|
||||||
parser.add_argument('-fft', action='store_true', default=False, help='plot FFT')
|
|
||||||
args = parser.parse_args()
|
|
||||||
|
|
||||||
# Check waveform parameters
|
Args:
|
||||||
if args.type.lower() not in Waveform.types:
|
timewindow (float): Time window.
|
||||||
raise CmdInputError('The waveform must have one of the following types {}'.format(', '.join(Waveform.types)))
|
dt (float): Time discretisation.
|
||||||
if args.freq <= 0:
|
|
||||||
raise CmdInputError('The waveform requires an excitation frequency value of greater than zero')
|
|
||||||
|
|
||||||
w = Waveform()
|
Returns:
|
||||||
w.type = args.type
|
timewindow (float): Time window.
|
||||||
w.amp = args.amp
|
iterations (int): Number of interations.
|
||||||
w.freq = args.freq
|
"""
|
||||||
dt = args.dt
|
|
||||||
|
|
||||||
# Check time window
|
# Time window could be a string, float or int, so convert to string then check
|
||||||
if '.' in args.timewindow or 'e' in args.timewindow:
|
timewindow = str(timewindow)
|
||||||
if float(args.timewindow) > 0:
|
|
||||||
timewindow = float(args.timewindow)
|
try:
|
||||||
iterations = round_value((float(args.timewindow) / dt)) + 1
|
timewindow = int(timewindow)
|
||||||
|
iterations = timewindow
|
||||||
|
timewindow = (timewindow - 1) * dt
|
||||||
|
|
||||||
|
except:
|
||||||
|
timewindow = float(timewindow)
|
||||||
|
if timewindow > 0:
|
||||||
|
iterations = round_value((timewindow / dt)) + 1
|
||||||
else:
|
else:
|
||||||
raise CmdInputError('Time window must have a value greater than zero')
|
raise CmdInputError('Time window must have a value greater than zero')
|
||||||
# If number of iterations given
|
|
||||||
else:
|
return timewindow, iterations
|
||||||
timewindow = (int(args.timewindow) - 1) * dt
|
|
||||||
iterations = int(args.timewindow)
|
|
||||||
|
def plot_waveform(w, timewindow, dt, iterations, fft=False):
|
||||||
|
"""Plots waveform and prints useful information about its properties.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
w (class): Waveform class instance.
|
||||||
|
timewindow (float): Time window.
|
||||||
|
dt (float): Time discretisation.
|
||||||
|
iterations (int): Number of iterations.
|
||||||
|
fft (boolean): Plot FFT of waveform.
|
||||||
|
"""
|
||||||
|
|
||||||
time = np.linspace(0, 1, iterations)
|
time = np.linspace(0, 1, iterations)
|
||||||
time *= (iterations * dt)
|
time *= (iterations * dt)
|
||||||
@@ -87,7 +94,7 @@ if w.type == 'gaussian':
|
|||||||
print('Time window: {:g} s ({} iterations)'.format(timewindow, iterations))
|
print('Time window: {:g} s ({} iterations)'.format(timewindow, iterations))
|
||||||
print('Time step: {:g} s'.format(dt))
|
print('Time step: {:g} s'.format(dt))
|
||||||
|
|
||||||
if args.fft:
|
if fft:
|
||||||
# Calculate magnitude of frequency spectra of waveform
|
# Calculate magnitude of frequency spectra of waveform
|
||||||
power = 10 * np.log10(np.abs(np.fft.fft(waveform))**2)
|
power = 10 * np.log10(np.abs(np.fft.fft(waveform))**2)
|
||||||
freqs = np.fft.fftfreq(power.size, d=dt)
|
freqs = np.fft.fftfreq(power.size, d=dt)
|
||||||
@@ -131,3 +138,34 @@ else:
|
|||||||
|
|
||||||
plt.show()
|
plt.show()
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
|
||||||
|
# Parse command line arguments
|
||||||
|
parser = argparse.ArgumentParser(description='Plot built-in waveforms that can be used for sources.', usage='cd gprMax; python -m tools.plot_builtin_wave type amp freq timewindow dt')
|
||||||
|
parser.add_argument('type', help='type of waveform', choices=Waveform.types)
|
||||||
|
parser.add_argument('amp', type=float, help='amplitude of waveform')
|
||||||
|
parser.add_argument('freq', type=float, help='centre frequency of waveform')
|
||||||
|
parser.add_argument('timewindow', help='time window to view waveform')
|
||||||
|
parser.add_argument('dt', type=float, help='time step to view waveform')
|
||||||
|
parser.add_argument('-fft', action='store_true', default=False, help='plot FFT of waveform')
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
# Check waveform parameters
|
||||||
|
if args.type.lower() not in Waveform.types:
|
||||||
|
raise CmdInputError('The waveform must have one of the following types {}'.format(', '.join(Waveform.types)))
|
||||||
|
if args.freq <= 0:
|
||||||
|
raise CmdInputError('The waveform requires an excitation frequency value of greater than zero')
|
||||||
|
|
||||||
|
# Create waveform instance
|
||||||
|
w = Waveform()
|
||||||
|
w.type = args.type
|
||||||
|
w.amp = args.amp
|
||||||
|
w.freq = args.freq
|
||||||
|
|
||||||
|
timewindow, iterations = check_timewindow(args.timewindow, args.dt)
|
||||||
|
plot_waveform(w, timewindow, args.dt, iterations, args.fft)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
在新工单中引用
屏蔽一个用户