You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Moreover, to visualize the solution (both the higher-order one and the reduced one), we import also the mesh information to be able to create the triangulation. We underline this additional step is related only to plotting purpose, and not mandatory for the reduced space generation.
57
66
58
67
# In[3]:
59
68
60
69
61
-
triang=data.triang
70
+
x, y=coords
71
+
frommatplotlib.triimportTriangulation
72
+
triang=Triangulation(x, y, triangles)
62
73
63
74
# For the sake of clarity the snapshots are plotted.
64
75
@@ -163,7 +174,4 @@ def plot_solution(mu0, mu1):
163
174
# In[13]:
164
175
165
176
166
-
rom.optimal_mu()
167
-
168
-
169
-
# These function can be used to achieve the wanted (estimated) accuracy.
0 commit comments