├── LICENSE ├── README.rst ├── environment.yml ├── notebooks ├── 3D_TDEM_simulation_sphere_movie.ipynb ├── 3D_TDEM_simulation_topography_movie.ipynb ├── Halfspace.ipynb ├── Joint EM inversion.ipynb ├── Layered_earth.ipynb ├── current_sphere_center.mp4 ├── current_sphere_side.mp4 └── wave.txt ├── requirements.txt ├── requirements_dev.txt └── ubc_utils ├── __init__.py └── utils_ubc_tdem.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpeg-research/oldenburg-2018-AEM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpeg-research/oldenburg-2018-AEM/HEAD/README.rst -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpeg-research/oldenburg-2018-AEM/HEAD/environment.yml -------------------------------------------------------------------------------- /notebooks/3D_TDEM_simulation_sphere_movie.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpeg-research/oldenburg-2018-AEM/HEAD/notebooks/3D_TDEM_simulation_sphere_movie.ipynb -------------------------------------------------------------------------------- /notebooks/3D_TDEM_simulation_topography_movie.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpeg-research/oldenburg-2018-AEM/HEAD/notebooks/3D_TDEM_simulation_topography_movie.ipynb -------------------------------------------------------------------------------- /notebooks/Halfspace.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpeg-research/oldenburg-2018-AEM/HEAD/notebooks/Halfspace.ipynb -------------------------------------------------------------------------------- /notebooks/Joint EM inversion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpeg-research/oldenburg-2018-AEM/HEAD/notebooks/Joint EM inversion.ipynb -------------------------------------------------------------------------------- /notebooks/Layered_earth.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpeg-research/oldenburg-2018-AEM/HEAD/notebooks/Layered_earth.ipynb -------------------------------------------------------------------------------- /notebooks/current_sphere_center.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpeg-research/oldenburg-2018-AEM/HEAD/notebooks/current_sphere_center.mp4 -------------------------------------------------------------------------------- /notebooks/current_sphere_side.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpeg-research/oldenburg-2018-AEM/HEAD/notebooks/current_sphere_side.mp4 -------------------------------------------------------------------------------- /notebooks/wave.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpeg-research/oldenburg-2018-AEM/HEAD/notebooks/wave.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpeg-research/oldenburg-2018-AEM/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- 1 | testipynb 2 | nose 3 | -------------------------------------------------------------------------------- /ubc_utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .utils_ubc_tdem import * -------------------------------------------------------------------------------- /ubc_utils/utils_ubc_tdem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpeg-research/oldenburg-2018-AEM/HEAD/ubc_utils/utils_ubc_tdem.py --------------------------------------------------------------------------------