Updates to names of some of the tool scripts.

这个提交包含在:
craig-warren
2015-11-06 17:37:25 +00:00
父节点 548a2e2fe0
当前提交 ffe4302217
共有 15 个文件被更改,包括 49 次插入49 次删除

查看文件

@@ -1,4 +1,4 @@
% plot_fields_Ascan.m
% plot_Ascan_hdf5.m
% Script to save and plot EM fields from a gprMax A-scan
%
% Craig Warren

查看文件

@@ -1,4 +1,4 @@
% plot_fields_Bscan.m
% plot_Bscan_hdf5.m
% Script to plot EM fields from a gprMax B-scan
%
% Craig Warren

查看文件

@@ -24,7 +24,7 @@ from .plot_fields import plot_Ascan
"""Plots electric and magnetic fields from all receiver points in the given output file. Each receiver point is plotted in a new figure window."""
# Parse command line arguments
parser = argparse.ArgumentParser(description='Plots electric and magnetic fields from all receiver points in the given output file. Each receiver point is plotted in a new figure window.', usage='cd gprMax; python -m tools.plot_hdf5_Ascan outputfile')
parser = argparse.ArgumentParser(description='Plots electric and magnetic fields from all receiver points in the given output file. Each receiver point is plotted in a new figure window.', usage='cd gprMax; python -m tools.plot_Ascan_hdf5 outputfile')
parser.add_argument('outputfile', help='name of output file including path')
args = parser.parse_args()

查看文件

@@ -26,7 +26,7 @@ from gprMax.exceptions import CmdInputError
"""Plots B-scan."""
# Parse command line arguments
parser = argparse.ArgumentParser(description='Plots B-scan.', usage='cd gprMax; python -m tools.plot_hdf5_Bscan outputfile field')
parser = argparse.ArgumentParser(description='Plots B-scan.', usage='cd gprMax; python -m tools.plot_Bscan_hdf5 outputfile field')
parser.add_argument('outputfile', help='name of output file including path')
parser.add_argument('field', help='name of field to be plotted, i.e. Ex, Ey, Ez')
args = parser.parse_args()