mirror of
https://github.com/wassname/simpeg.git
synced 2026-06-27 21:08:35 +08:00
49ecbc7411
make html see the wonderful documents!!
13 lines
210 B
Python
13 lines
210 B
Python
import numpy as np
|
|
import matplotlib.pyplot as plt
|
|
from SimPEG import TensorMesh
|
|
|
|
x0 = np.zeros(2)
|
|
h1 = np.linspace(.1,.5,3)
|
|
h2 = np.linspace(.1,.5,5)
|
|
mesh = TensorMesh([h1,h2],x0)
|
|
mesh.plotGrid()
|
|
|
|
plt.show()
|
|
|