Dieter Werthmüller
Dieter Werthmüller
The current source functions use either: - The adjoint of tri-linear interpolation for points; - Allocating arbitrary shaped sources to the relevant cells. Better source functions would be great. E.g.,...
Include gallery in code base; set-up GHA to run it (probably only for PR or releases? Takes quite some time). See https://github.com/emsig/emg3d-gallery/issues/2
Wishlist for improvements / extensions of the CLI (copied over from https://github.com/banesullivan/scooby/pull/86#issuecomment-1200362012) - Be able to grep for package names so that I could do `scooby django-*` and get a...
Just something to keep in mind: From `SciPy>=1.9` onwards, we can do, e.g., ``` import scipy as sp def myfunc(): sp.interpolate.xyz sp.integrate.xyz ... ``` The submodules, e.g., `interpolate`, are lazy...
Add particular systems, e.g., - [DUALEM](https://dualem.com/) (work of @mariacarrizo) - [WalkTEM](https://www.guidelinegeo.com/product/abem-walktem-2/) ([example in gallery](https://empymod.emsig.xyz/en/stable/gallery/tdomain/tem_walktem.html), work with @leonfoks) - TEMFAST (work of @aignerlukas) in a new file `systems.py`. With this we...
Create a fast version of `bipole`, without any casting or input checks. The user must provide the correct input. Speed vs flexibility.
Make the coordinate definition for sources and receivers more flexible. E.g., ``` src = ( 0, # x 0, # y 0, # z 0, # azm [0, 10, 20,...
Add DualEM configuration; contributed by @mariacarrizo . (See #196)