We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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')
The text was updated successfully, but these errors were encountered:
Ah, no, the problem is not CC vs (Ex, Ey, Ez), but 0's vs 1's.
CC
Ex
Ey
Ez
This works
This does not
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_cells))
Sorry, something went wrong.
Fix slicer re #363
4a37b43
Merge pull request #364 from simpeg/fix-for-363
bd5bfa4
Successfully merging a pull request may close this issue.
Confusing stuff.
In here, #261, we fixed this:
However, the following still gives a wrong result:
The text was updated successfully, but these errors were encountered: