-
Notifications
You must be signed in to change notification settings - Fork 36
Closed
Labels
Description
Confusing stuff.
In here, #261, we fixed this:
import discretize
import numpy as np
mesh = discretize.TensorMesh(([1, 1], [1, 1], [1, 1]), (0, 0, 0))
mesh.plot_3d_slicer(np.ones(mesh.n_cells))
However, the following still gives a wrong result:
import discretize
import numpy as np
mesh = discretize.TensorMesh(([1, 1], [1, 1], [1, 1]), (0, 0, 0))
mesh.plot_3d_slicer(np.zeros(mesh.n_edges_z), v_type='Ez')
Reactions are currently unavailable
