├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── credentials.tar.gz.enc ├── docs ├── Makefile ├── _ext │ ├── __init__.py │ └── edit_on_github.py ├── _templates │ ├── breadcrumbs.html │ ├── footer.html │ └── layout.html ├── app.yaml ├── case-studies │ ├── DCIP │ │ ├── KevitsaDC │ │ │ ├── dc_mesh.txt │ │ │ ├── dc_sigma.txt │ │ │ ├── dc_topo.txt │ │ │ └── dcipdata_12150N.txt │ │ └── Kevitsa_DC.ipynb │ ├── PF │ │ ├── Kevitsa_Grav_Inv.ipynb │ │ ├── Kevitsa_Mag_FWR.ipynb │ │ ├── Linear_Problem_Grav.ipynb │ │ ├── Linear_Problem_Mag.ipynb │ │ ├── TKC_Mag.ipynb │ │ └── TKC_PF.ipynb │ ├── TDEM │ │ ├── KevitsaDC │ │ │ ├── dc_mesh.txt │ │ │ └── dc_sigma.txt │ │ ├── Kevitsa_VTEM.ipynb │ │ ├── TKC_ATEM.ipynb │ │ └── TKC_ATEM │ │ │ ├── TKCATEMfwd.py │ │ │ └── TKCATEMinv.py │ └── index.rst ├── conf.py ├── fundamentals │ ├── fieldsfluxesphysics.rst │ ├── guessbutfirst.rst │ ├── index.rst │ ├── introduction.rst │ ├── pixelsandtheirneighbors.rst │ ├── resources.rst │ ├── spices.rst │ ├── stroll.rst │ ├── thereandback.rst │ ├── tools.ipynb │ └── whichwayisdown.rst ├── index.rst ├── index.yaml ├── make.bat ├── simpegtutorials.py └── tutorials │ └── index.rst ├── images ├── Scipy_2016_PF_Thumbnail.png ├── SimPEGFramework.png ├── SimPEGInversionLinearNotebook.png ├── dc │ ├── Cond3D.png │ ├── DCObsPred.png │ ├── DCdata.png │ ├── DCfields.png │ └── GradientArray.png ├── docsinnotebook.png ├── forwardsimulation.png ├── intsandfloats.png ├── loopsandlists.png ├── notebookpointers.png ├── pythonlists.png ├── tabcompletion.png └── tkc │ ├── dc.png │ ├── grav.png │ ├── mag.png │ ├── mt.png │ └── seismic.png ├── notebooks └── fundamentals │ ├── fields_fluxes_physics │ └── index.ipynb │ ├── index.ipynb │ ├── pixels_and_neighbors │ ├── all_together_now.ipynb │ ├── dc_interact.py │ ├── divergence.ipynb │ ├── images │ │ ├── DCEquations.png │ │ ├── DCSurvey.png │ │ ├── Divergence.png │ │ ├── FiniteVolume.png │ │ ├── NumericalSolve.png │ │ └── WeakFormulation.png │ ├── index.ipynb │ ├── mesh.ipynb │ └── weakformulation.ipynb │ └── tools.ipynb ├── requirements.txt └── tests ├── __init__.py ├── docs ├── __init__.py └── test_docs.py ├── execute_notebooks.py └── notebooks ├── __init__.py └── test_notebooks.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/README.md -------------------------------------------------------------------------------- /credentials.tar.gz.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/credentials.tar.gz.enc -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_ext/__init__.py: -------------------------------------------------------------------------------- 1 | from edit_on_github import * 2 | -------------------------------------------------------------------------------- /docs/_ext/edit_on_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/_ext/edit_on_github.py -------------------------------------------------------------------------------- /docs/_templates/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/_templates/breadcrumbs.html -------------------------------------------------------------------------------- /docs/_templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/_templates/footer.html -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/app.yaml -------------------------------------------------------------------------------- /docs/case-studies/DCIP/KevitsaDC/dc_mesh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/case-studies/DCIP/KevitsaDC/dc_mesh.txt -------------------------------------------------------------------------------- /docs/case-studies/DCIP/KevitsaDC/dc_sigma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/case-studies/DCIP/KevitsaDC/dc_sigma.txt -------------------------------------------------------------------------------- /docs/case-studies/DCIP/KevitsaDC/dc_topo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/case-studies/DCIP/KevitsaDC/dc_topo.txt -------------------------------------------------------------------------------- /docs/case-studies/DCIP/KevitsaDC/dcipdata_12150N.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/case-studies/DCIP/KevitsaDC/dcipdata_12150N.txt -------------------------------------------------------------------------------- /docs/case-studies/DCIP/Kevitsa_DC.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/case-studies/DCIP/Kevitsa_DC.ipynb -------------------------------------------------------------------------------- /docs/case-studies/PF/Kevitsa_Grav_Inv.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/case-studies/PF/Kevitsa_Grav_Inv.ipynb -------------------------------------------------------------------------------- /docs/case-studies/PF/Kevitsa_Mag_FWR.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/case-studies/PF/Kevitsa_Mag_FWR.ipynb -------------------------------------------------------------------------------- /docs/case-studies/PF/Linear_Problem_Grav.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/case-studies/PF/Linear_Problem_Grav.ipynb -------------------------------------------------------------------------------- /docs/case-studies/PF/Linear_Problem_Mag.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/case-studies/PF/Linear_Problem_Mag.ipynb -------------------------------------------------------------------------------- /docs/case-studies/PF/TKC_Mag.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/case-studies/PF/TKC_Mag.ipynb -------------------------------------------------------------------------------- /docs/case-studies/PF/TKC_PF.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/case-studies/PF/TKC_PF.ipynb -------------------------------------------------------------------------------- /docs/case-studies/TDEM/KevitsaDC/dc_mesh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/case-studies/TDEM/KevitsaDC/dc_mesh.txt -------------------------------------------------------------------------------- /docs/case-studies/TDEM/KevitsaDC/dc_sigma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/case-studies/TDEM/KevitsaDC/dc_sigma.txt -------------------------------------------------------------------------------- /docs/case-studies/TDEM/Kevitsa_VTEM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/case-studies/TDEM/Kevitsa_VTEM.ipynb -------------------------------------------------------------------------------- /docs/case-studies/TDEM/TKC_ATEM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/case-studies/TDEM/TKC_ATEM.ipynb -------------------------------------------------------------------------------- /docs/case-studies/TDEM/TKC_ATEM/TKCATEMfwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/case-studies/TDEM/TKC_ATEM/TKCATEMfwd.py -------------------------------------------------------------------------------- /docs/case-studies/TDEM/TKC_ATEM/TKCATEMinv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/case-studies/TDEM/TKC_ATEM/TKCATEMinv.py -------------------------------------------------------------------------------- /docs/case-studies/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/case-studies/index.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/fundamentals/fieldsfluxesphysics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/fundamentals/fieldsfluxesphysics.rst -------------------------------------------------------------------------------- /docs/fundamentals/guessbutfirst.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/fundamentals/guessbutfirst.rst -------------------------------------------------------------------------------- /docs/fundamentals/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/fundamentals/index.rst -------------------------------------------------------------------------------- /docs/fundamentals/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/fundamentals/introduction.rst -------------------------------------------------------------------------------- /docs/fundamentals/pixelsandtheirneighbors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/fundamentals/pixelsandtheirneighbors.rst -------------------------------------------------------------------------------- /docs/fundamentals/resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/fundamentals/resources.rst -------------------------------------------------------------------------------- /docs/fundamentals/spices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/fundamentals/spices.rst -------------------------------------------------------------------------------- /docs/fundamentals/stroll.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/fundamentals/stroll.rst -------------------------------------------------------------------------------- /docs/fundamentals/thereandback.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/fundamentals/thereandback.rst -------------------------------------------------------------------------------- /docs/fundamentals/tools.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/fundamentals/tools.ipynb -------------------------------------------------------------------------------- /docs/fundamentals/whichwayisdown.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/fundamentals/whichwayisdown.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/index.yaml -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/simpegtutorials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/simpegtutorials.py -------------------------------------------------------------------------------- /docs/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/docs/tutorials/index.rst -------------------------------------------------------------------------------- /images/Scipy_2016_PF_Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/images/Scipy_2016_PF_Thumbnail.png -------------------------------------------------------------------------------- /images/SimPEGFramework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/images/SimPEGFramework.png -------------------------------------------------------------------------------- /images/SimPEGInversionLinearNotebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/images/SimPEGInversionLinearNotebook.png -------------------------------------------------------------------------------- /images/dc/Cond3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/images/dc/Cond3D.png -------------------------------------------------------------------------------- /images/dc/DCObsPred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/images/dc/DCObsPred.png -------------------------------------------------------------------------------- /images/dc/DCdata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/images/dc/DCdata.png -------------------------------------------------------------------------------- /images/dc/DCfields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/images/dc/DCfields.png -------------------------------------------------------------------------------- /images/dc/GradientArray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/images/dc/GradientArray.png -------------------------------------------------------------------------------- /images/docsinnotebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/images/docsinnotebook.png -------------------------------------------------------------------------------- /images/forwardsimulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/images/forwardsimulation.png -------------------------------------------------------------------------------- /images/intsandfloats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/images/intsandfloats.png -------------------------------------------------------------------------------- /images/loopsandlists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/images/loopsandlists.png -------------------------------------------------------------------------------- /images/notebookpointers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/images/notebookpointers.png -------------------------------------------------------------------------------- /images/pythonlists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/images/pythonlists.png -------------------------------------------------------------------------------- /images/tabcompletion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/images/tabcompletion.png -------------------------------------------------------------------------------- /images/tkc/dc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/images/tkc/dc.png -------------------------------------------------------------------------------- /images/tkc/grav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/images/tkc/grav.png -------------------------------------------------------------------------------- /images/tkc/mag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/images/tkc/mag.png -------------------------------------------------------------------------------- /images/tkc/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/images/tkc/mt.png -------------------------------------------------------------------------------- /images/tkc/seismic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/images/tkc/seismic.png -------------------------------------------------------------------------------- /notebooks/fundamentals/fields_fluxes_physics/index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/notebooks/fundamentals/fields_fluxes_physics/index.ipynb -------------------------------------------------------------------------------- /notebooks/fundamentals/index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/notebooks/fundamentals/index.ipynb -------------------------------------------------------------------------------- /notebooks/fundamentals/pixels_and_neighbors/all_together_now.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/notebooks/fundamentals/pixels_and_neighbors/all_together_now.ipynb -------------------------------------------------------------------------------- /notebooks/fundamentals/pixels_and_neighbors/dc_interact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/notebooks/fundamentals/pixels_and_neighbors/dc_interact.py -------------------------------------------------------------------------------- /notebooks/fundamentals/pixels_and_neighbors/divergence.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/notebooks/fundamentals/pixels_and_neighbors/divergence.ipynb -------------------------------------------------------------------------------- /notebooks/fundamentals/pixels_and_neighbors/images/DCEquations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/notebooks/fundamentals/pixels_and_neighbors/images/DCEquations.png -------------------------------------------------------------------------------- /notebooks/fundamentals/pixels_and_neighbors/images/DCSurvey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/notebooks/fundamentals/pixels_and_neighbors/images/DCSurvey.png -------------------------------------------------------------------------------- /notebooks/fundamentals/pixels_and_neighbors/images/Divergence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/notebooks/fundamentals/pixels_and_neighbors/images/Divergence.png -------------------------------------------------------------------------------- /notebooks/fundamentals/pixels_and_neighbors/images/FiniteVolume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/notebooks/fundamentals/pixels_and_neighbors/images/FiniteVolume.png -------------------------------------------------------------------------------- /notebooks/fundamentals/pixels_and_neighbors/images/NumericalSolve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/notebooks/fundamentals/pixels_and_neighbors/images/NumericalSolve.png -------------------------------------------------------------------------------- /notebooks/fundamentals/pixels_and_neighbors/images/WeakFormulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/notebooks/fundamentals/pixels_and_neighbors/images/WeakFormulation.png -------------------------------------------------------------------------------- /notebooks/fundamentals/pixels_and_neighbors/index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/notebooks/fundamentals/pixels_and_neighbors/index.ipynb -------------------------------------------------------------------------------- /notebooks/fundamentals/pixels_and_neighbors/mesh.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/notebooks/fundamentals/pixels_and_neighbors/mesh.ipynb -------------------------------------------------------------------------------- /notebooks/fundamentals/pixels_and_neighbors/weakformulation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/notebooks/fundamentals/pixels_and_neighbors/weakformulation.ipynb -------------------------------------------------------------------------------- /notebooks/fundamentals/tools.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/notebooks/fundamentals/tools.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/tests/docs/__init__.py -------------------------------------------------------------------------------- /tests/docs/test_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/tests/docs/test_docs.py -------------------------------------------------------------------------------- /tests/execute_notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/tests/execute_notebooks.py -------------------------------------------------------------------------------- /tests/notebooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/tests/notebooks/__init__.py -------------------------------------------------------------------------------- /tests/notebooks/test_notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoscixyz/computation/HEAD/tests/notebooks/test_notebooks.py --------------------------------------------------------------------------------