SimPEG.FLOW

This commit is contained in:
Rowan Cockett
2015-10-30 14:36:51 -07:00
13 changed files with 1304 additions and 3 deletions
+1 -3
View File
@@ -38,8 +38,6 @@ def run(plotIt=True):
AinvrM = SolverLU(ArM)
phirM = AinvrM*rhsrM
if not plotIt: return
#Step4: Making Figure
fig, axes = plt.subplots(1,2,figsize=(12*1.2,4*1.2))
label = ["(a)", "(b)"]
@@ -71,7 +69,7 @@ def run(plotIt=True):
axes[i].set_ylabel(" ")
axes[i].set_xlabel("x")
plt.show()
if plotIt: plt.show()
if __name__ == '__main__':
run()