moxon-frame-generator
simple generator for 3D-printed frames for a moxon rectangle antenna
gprMax is open source software that simulates electromagnetic wave propagation using the Finite-Difference Time-Domain…
⚠️ Active development takes place on the devel branch. The master branch contains stable releases only and does not reflect the full commit history, contributor base, or pace of ongoing development. For an accurate picture of project activity please consult the devel branch commit history
and contributor graph.
gprMax is an open source software that simulates electromagnetic wave propagation. It solves Maxwell's equations in 3D using the Finite-Difference Time-Domain (FDTD) method. gprMax was designed for modelling Ground Penetrating Radar (GPR) but can also be used to model electromagnetic wave propagation for many other applications.
gprMax is currently released under the GNU General Public License v3 or higher.
gprMax is principally written in Python 3 with performance-critical parts written in Cython. It includes a CPU-based solver parallelized using OpenMP, and a GPU-based solver written using the NVIDIA CUDA programming model.
If you use gprMax and publish your work we would be grateful if you could cite our work using the following:
For further information on referencing gprMax visit the Publications section of our website.
gprMax/
conda_env.yml
CONTRIBUTORS
docs/
gprMax/
gsoc/
LICENSE
README.rst
setup.cfg
setup.py
tests/
tools/
user_libs/
user_models/
conda_env.yml is a configuration file for Anaconda (Miniconda) that sets up a Python environment with all the required Python packages for gprMax.CONTRIBUTORS contains a list of names of people who have contributed to the gprMax codebase.docs contains source files for the User Guide. The User Guide is written using reStructuredText markup and is built using Sphinx and Read the Docs.gprMax is the main package. Within this package, the main module is gprMax.pygsoc contains information for Google Summer of Code program - project ideas and proposal guidance.LICENSE contains information on the GNU General Public License v3 or higher.README.rst contains getting started information on installation, usage, and new features/changes.setup.cfg is used to set preferences for code formatting/styling using flake8.setup.py is used to compile the Cython extension modules.tests is a sub-package that contains test modules and input files.tools is a sub-package that contains scripts to assist with viewing and post-processing output from models.user_libs is a sub-package where useful modules contributed by users are stored.user_models is a sub-package where useful input files contributed by users are stored.The following steps provide guidance on how to install gprMax:
We recommend using Miniconda to install Python and the required Python packages for gprMax in a self-contained Python environment. Miniconda is a mini version of Anaconda which is a completely free Python distribution (including for commercial use and redistribution). It includes more than 300 of the most popular Python packages for science, math, engineering, and data analysis.
$ conda update conda $ conda install git $ git clone https://github.com/gprMax/gprMax.git $ cd gprMax $ conda env create -f conda_env.yml
This will ensure conda is up-to-date, install Git, get the latest gprMax source code from GitHub, and create an environment for gprMax with all the necessary Python packages.
If you prefer to install Python and the required Python packages manually, i.e. without using Anaconda/Miniconda, look in the conda_env.yml file for a list of the requirements.
If you are using Arch Linux (https://www.archlinux.org/) you may need to also install wxPython by adding it to the conda environment file (conda_env.yml).
$ brew install gcc
C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.23.28105\bin\Hostx64\x64 (this may vary according to your exact machine and installation) to your system Path environment variable.Alternatively, if you are using Windows 10/11 you can install the Windows Subsystem for Linux and then follow the Linux install instructions for gprMax. Note however that currently WSL does not aim to support GUI desktops or applications, e.g. Gnome, KDE, etc....
Once you have installed the aforementioned tools follow these steps to build and install gprMax:
(gprMax)$ python setup.py build (gprMax)$ python setup.py install
You are now ready to proceed to running gprMax.
gprMax is designed as a Python package, i.e. a namespace that can contain multiple packages and modules, much like a directory.
Open a Terminal (Linux/macOS) or Command Prompt (Windows), navigate into the top-level gprMax directory, and if it is not already active, activate the gprMax conda environment:code:conda activate gprMax.
Basic usage of gprMax is:
(gprMax)$ python -m gprMax path_to/name_of_input_file
For example to run one of the test models:
(gprMax)$ python -m gprMax user_models/cylinder_Ascan_2D.in
When the simulation is complete you can plot the A-scan using:
(gprMax)$ python -m tools.plot_Ascan user_models/cylinder_Ascan_2D.out
Your results should be like those from the A-scan from the metal cylinder example in introductory/basic 2D models section
When you are finished using gprMax, the conda environment can be deactivated using conda deactivate.
| Argument name | Type | Description |
|---|---|---|
-n |
integer | number of times to run the input file. This option can be used to run a series of models, e.g. to create a B-scan with 60 traces: (gprMax)$ python -m gprMax user_models/cylinder_Bscan_2D.in -n 60 |
-gpu |
flag/list | flag to use NVIDIA GPU or list of NVIDIA GPU device ID(s) for specific GPU card(s), e.g. -gpu 0 1 |
-restart |
integer | model number to start/restart the simulation from. It would typically be used to restart a series of models from a specific model number, with the -n argument, e.g. to restart from A-scan 45 when creating a B-scan with 60 traces: (gprMax)$ python -m gprMax user_models/cylinder_Bscan_2D.in -n 15 -restart 45 |
-task |
integer | task identifier (model number) when running the simulation as a job array on Open Grid Scheduler/Grid Engine. For further details see the parallel performance section of the User Guide |
-mpi |
integer | number of Message Passing Interface (MPI) tasks, i.e. master + workers, for MPI task farm. This option is most usefully combined with -n to allow individual models to be farmed out using a MPI task farm, e.g. to create a B-scan with 60 traces and use MPI to farm out each trace: (gprMax)$ python -m gprMax user_models/cylinder_Bscan_2D.in -n 60 -mpi 61. For further details see the parallel performance section of the User Guide |
--mpi-no-spawn |
flag | uses MPI task farm without spawn mechanism. For further details see the parallel performance section of the User Guide |
-benchmark |
flag | switch on benchmarking mode. This can be used to benchmark the threading (parallel) performance of gprMax on different hardware. For further details see the benchmarking section of the User Guide |
--geometry-only |
flag | build a model and produce any geometry views but does not run the simulation, e.g. to check the geometry of a model is correct: (gprMax)$ python -m gprMax user_models/heterogeneous_soil.in --geometry-only |
--geometry-fixed |
flag | runs a series of models where the geometry does not change between models, e.g. a B-scan where only the position of simple sources and receivers, moved using #src_steps and #rx_steps, changes between models. |
--opt-taguchi |
flag | runs a series of models using an optimization process based on Taguchi's method. For further details see the user libraries section of the User Guide |
--write-processed |
flag | writes another input file after any Python code and include commands in the original input file have been processed. Useful for checking that any Python code is being correctly processed into gprMax commands. |
-h or --help |
flag | is used to get help on command line options. |
conda activate gprMax. Run the following commands:(gprMax)$ git pull (gprMax)$ python setup.py cleanall (gprMax)$ python setup.py build (gprMax)$ python setup.py install
This will pull the most recent gprMax source code from GitHub, remove/clean previously built modules, and then build and install the latest version of gprMax.
Periodically you should update conda and the required Python packages. With the gprMax environment deactivated and from the top-level gprMax directory, run the following commands:
$ conda update conda $ conda env update -f conda_env.yml
more like this
simple generator for 3D-printed frames for a moxon rectangle antenna
GPU acceleration of smallpt with CUDA. Obtain an acceleration of >35x comparing to the original CPU-parallelized code w…
search projects, people, and tags