Joseph Capriotti
Joseph Capriotti
Currently when given a `TreeMesh` the `drape_electrodes_on_topography` function will shift the x,y, locations to the cell centers, in addition to shifting the z locations. For 3D: Ideally the path forward...
The 2D DC field object other properties (besides potential) need to be updated to properly account for the boundary conditions. I believe this only effects the cell centered discretization though.
the IODC class should be updated to take advantage of the data class when reading in dc data from a UBC format, and from a csv format, instead of assigning...
This issue is mostly to document something that should be done, so it is not lost. Most of the `JTvec` operations have unnecessary and repetitive matrix solutions. For example, https://github.com/simpeg/simpeg/blob/2cb11643517881f683cdc33a67f9d28223392609/SimPEG/EM/FDEM/ProblemFDEM.py#L154-L175...
Cyl vtk
This adds some missing operators for the cylindrical mesh, as well as 60x speedups for deflation matrix creation when `as_ones=False`. This also adds support for exporting cylindrical meshes to a...
The inner product matrices on `CurvilinearMesh` all require a full matrix inverse, as none of them are actually diagonal. This means that `mesh.get_face_inner_product(invert_matrix=True)` should fail on `CurvilinearMesh`. Currently it silently...
The utility function cartesian_to_cylindrical doesn't actually convert points, it only works for vectors. Currently if `vec is None`, it just re-uses the `grid` input as a `vec` input and carries...
This modifies the CSS sheet to do some fancy dark mode formatting of colors, and images to make things look nice in dark mode!
### Proposed new feature or change: Scipy is deprecating (eventually) their sparse matrix interface in favor of a sparse array interface that behaves more like numpy arrays. Eventually `discretize` will...
Adds the `dask` version of the `MetaSimulation`. Essentially it never explicitly sends around fields objects, and it avoids sending around simulations (after they have gone through the setter). Every operation...