1 | import numpy as np
|
---|
2 | from processmesh import processmesh
|
---|
3 | import matplotlib as mpl
|
---|
4 | from mpl_toolkits.mplot3d.art3d import Line3DCollection
|
---|
5 | from mpl_toolkits.axes_grid1.inset_locator import inset_axes
|
---|
6 | from mpl_toolkits.mplot3d import Axes3D
|
---|
7 |
|
---|
8 |
|
---|
9 | def plot_icefront(md, options, fig, ax):
|
---|
10 | #PLOT_ICEFRONT - plot segment on neumann BC
|
---|
11 | #
|
---|
12 | # Usage:
|
---|
13 | # plot_icefront(md, options, width, i)
|
---|
14 | #
|
---|
15 | # See also: PLOTMODEL
|
---|
16 | #process mesh and data
|
---|
17 | x, y, z, elements, is2d, isplanet = processmesh(md, [], options)
|
---|
18 |
|
---|
19 | icenodes = md.mask.ice_levelset < 0
|
---|
20 | iceelement = np.sum(icenodes[elements], axis=1)
|
---|
21 |
|
---|
22 | if options.exist('layer'):
|
---|
23 | nodes_per_elt = np.shape(md.mesh.elements2d)[1]
|
---|
24 | else:
|
---|
25 | nodes_per_elt = np.shape(md.mesh.elements)[1]
|
---|
26 | #icefront check
|
---|
27 | icefront = np.where(np.logical_and(iceelement != nodes_per_elt, iceelement != 0))
|
---|
28 |
|
---|
29 | oceannodes = md.mask.ocean_levelset < 0
|
---|
30 | oceanelement = np.sum(oceannodes[elements], axis=1)
|
---|
31 |
|
---|
32 | #icefront check
|
---|
33 | groundingline = np.where(np.logical_and(oceanelement != nodes_per_elt, oceanelement != 0))
|
---|
34 |
|
---|
35 | #plot mesh
|
---|
36 | if is2d:
|
---|
37 | ax.triplot(x, y, elements)
|
---|
38 |
|
---|
39 | #highlight elements on neumann
|
---|
40 | if len(icefront[0]) > 0:
|
---|
41 | colors = np.ones(np.shape(elements[icefront])[0])
|
---|
42 | cmap = mpl.colors.ListedColormap("navy")
|
---|
43 | ax.tripcolor(x, y, elements[icefront], facecolors=colors, edgecolor='k', label='elements on ice front', cmap=cmap)
|
---|
44 | if len(groundingline[0]) > 0:
|
---|
45 | colors = np.ones(np.shape(elements[groundingline])[0])
|
---|
46 | cmap = mpl.colors.ListedColormap("limegreen")
|
---|
47 | ax.tripcolor(x, y, elements[groundingline], facecolors=colors, edgecolor='k', label='elements on grounding line', cmap=cmap)
|
---|
48 | else:
|
---|
49 | ax = inset_axes(ax, width='100%', height='100%', loc=3, borderpad=0, axes_class=Axes3D)
|
---|
50 |
|
---|
51 | AB = elements[:, 0:2]
|
---|
52 | BC = elements[:, 1:3]
|
---|
53 | CA = np.vstack((elements[:, 2], elements[:, 0])).T
|
---|
54 | DE = elements[:, 3:5]
|
---|
55 | EF = elements[:, 4:]
|
---|
56 | FD = np.vstack((elements[:, 5], elements[:, 3])).T
|
---|
57 | AD = np.vstack((elements[:, 0], elements[:, 3])).T
|
---|
58 | BE = np.vstack((elements[:, 1], elements[:, 4])).T
|
---|
59 | CF = np.vstack((elements[:, 2], elements[:, 5])).T
|
---|
60 |
|
---|
61 | tmpa = np.vstack((AB, BC, CA, DE, EF, FD, AD, BE, CF))
|
---|
62 | #deleting segments that appear multiple times
|
---|
63 | tmpb = np.ascontiguousarray(tmpa).view(np.dtype((np.void, tmpa.dtype.itemsize * tmpa.shape[1])))
|
---|
64 | _, idx = np.unique(tmpb, return_index=True)
|
---|
65 | triel = tmpa[idx]
|
---|
66 |
|
---|
67 | for t, triangle in enumerate(triel):
|
---|
68 | tri = list(zip(x[triangle], y[triangle], z[triangle]))
|
---|
69 | facecolor = [0, 0, 0]
|
---|
70 | if t in icefront:
|
---|
71 | facecolor = [0.5, 0.5, 0.5]
|
---|
72 | pl3 = Line3DCollection([tri], edgecolor='r', facecolor=facecolor)
|
---|
73 | ax.add_collection3d(pl3)
|
---|
74 |
|
---|
75 | ax.set_xlim([min(x), max(x)])
|
---|
76 | ax.set_ylim([min(y), max(y)])
|
---|
77 | ax.set_zlim([min(z), max(z)])
|
---|
78 | #highlight elements on neumann
|
---|
79 |
|
---|
80 | #apply options
|
---|
81 | options.addfielddefault('title', 'Neumann boundary conditions')
|
---|
82 | options.addfielddefault('colorbar', 'off')
|
---|