Added note to ensure when antenna models are moved to create B-scans the step size is a multiple of the spatial resolution of the model.

这个提交包含在:
Craig Warren
2018-09-06 15:23:07 +01:00
父节点 b4b910250b
当前提交 80cc5a1d3a
共有 2 个文件被更改,包括 8 次插入1 次删除

查看文件

@@ -126,6 +126,10 @@ The antenna must be moved to a new position for every single A-scan (trace) in t
The total number of runs for a model as well as the number of the current run of the model are stored and can be accessed in Python as ``number_model_runs`` and ``current_model_run``. The ``current_model_run`` can be used to move the position of the antenna for every run of the model as shown in Line 13. The antenna will be moved 5mm in the x direction for every new run of the model.
.. note::
If you are moving an antenna model within a simulation, e.g. to generate a B-scan, you should ensure that the step size you choose is a multiple of the spatial resolution of the simulation. Otherwise when the position of antenna is converted to cell coordinates the geometry maybe altered.
Results
-------
@@ -143,4 +147,3 @@ After merging the A-scans into a single file you can now view an image of the B-
:width: 600px
B-scan of model of a metal cylinder buried in a dielectric half-space with a model of an antenna similar to a GSSI 1.5GHz antenna.

查看文件

@@ -38,6 +38,10 @@ How to use the module
The antenna models can be accessed from within a block of Python code in an input file. The models are inserted at location x,y,z. The coordinates are relative to the geometric centre of the antenna in the x-y plane and the bottom of the antenna skid in the z direction. The models must be used with cubic spatial resolutions of either 0.5mm (GSSI 400MHz antenna only), 1mm (default), or 2mm by setting the keyword argument, e.g. ``resolution=0.002``. The antenna models can be rotated 90 degrees counter-clockwise (CCW) in the x-y plane by setting the keyword argument ``rotate90=True``.
.. note::
If you are moving an antenna model within a simulation, e.g. to generate a B-scan, you should ensure that the step size you choose is a multiple of the spatial resolution of the simulation. Otherwise when the position of antenna is converted to cell coordinates the geometry maybe altered.
Example
-------