1 | import numpy as np
|
---|
2 | from processmesh import processmesh
|
---|
3 | from applyoptions import applyoptions
|
---|
4 | from plot_icefront import plot_icefront
|
---|
5 | from hydrologydc import hydrologydc
|
---|
6 | from mpl_toolkits.mplot3d import Axes3D
|
---|
7 | from mpl_toolkits.axes_grid1.inset_locator import inset_axes
|
---|
8 |
|
---|
9 |
|
---|
10 | def plot_BC(md, options, fig, axgrid, gridindex):
|
---|
11 | '''
|
---|
12 | PLOT_BC - plot model boundary conditions
|
---|
13 |
|
---|
14 | Usage:
|
---|
15 | plot_BC(md, options, fig, axes)
|
---|
16 |
|
---|
17 | See also: PLOTMODEL
|
---|
18 | '''
|
---|
19 | x, y, z, elements, is2d, isplanet = processmesh(md, [], options)
|
---|
20 |
|
---|
21 | ax = axgrid[gridindex]
|
---|
22 | fig.delaxes(axgrid.cbar_axes[gridindex])
|
---|
23 |
|
---|
24 | if not is2d:
|
---|
25 | ax = inset_axes(axgrid[gridindex], width='100%', height='100%', loc=3, borderpad=0, axes_class=Axes3D)
|
---|
26 |
|
---|
27 | #plot neuman
|
---|
28 | plot_icefront(md, options, fig, ax)
|
---|
29 |
|
---|
30 | XLims = [np.min(x), np.max(x)]
|
---|
31 | YLims = [np.min(y), np.max(y)]
|
---|
32 | #plot dirichlets
|
---|
33 | dirichleton = options.getfieldvalue('dirichlet', 'on')
|
---|
34 |
|
---|
35 | if dirichleton == 'on':
|
---|
36 | #define what to plot with plot style
|
---|
37 | spc_dict = {'spcvx': ['stressbalance', 'o', 'r', 240, 'vx Dirichlet'],
|
---|
38 | 'spcvy': ['stressbalance', 'o', 'b', 160, 'vy Dirichlet']}
|
---|
39 | if not is2d:
|
---|
40 | spc_dict['spcvz'] = ['stressbalance', 'o', 'y', 80, 'vy Dirichlet']
|
---|
41 |
|
---|
42 | if isinstance(md.hydrology, hydrologydc):
|
---|
43 | spc_dict['spcepl_head'] = ['hydrology', 'v', 'r', 240, 'EPL Head']
|
---|
44 | if md.hydrology.isefficientlayer:
|
---|
45 | spc_dict['spcsediment_head'] = ['hydrology', '^', 'b', 240, 'IDS Head']
|
---|
46 |
|
---|
47 | for key in spc_dict:
|
---|
48 | mark = spc_dict[str(key)][1]
|
---|
49 | color = spc_dict[str(key)][2]
|
---|
50 | size = spc_dict[str(key)][3]
|
---|
51 | name = spc_dict[str(key)][4]
|
---|
52 | #first reduce vectors if layer is used
|
---|
53 | if options.getfieldvalue('layer', 0) >= 1:
|
---|
54 | plotlayer = options.getfieldvalue('layer', 0)
|
---|
55 | slicesize = len(x)
|
---|
56 | fulldata = md.__dict__[str(spc_dict[str(key)][0])].__dict__[str(key)]
|
---|
57 | data = fulldata[(plotlayer - 1) * slicesize:plotlayer * slicesize]
|
---|
58 | else:
|
---|
59 | data = md.__dict__[str(spc_dict[str(key)][0])].__dict__[str(key)]
|
---|
60 | ax.scatter(x[np.where(~np.isnan(data))],
|
---|
61 | y[np.where(~np.isnan(data))],
|
---|
62 | marker=mark, c=color, s=size, label=name, linewidth=0)
|
---|
63 |
|
---|
64 | ax.set_xlim(XLims)
|
---|
65 | ax.set_ylim(YLims)
|
---|
66 | ax.legend(bbox_to_anchor=(0., 1.02, 1., .102), loc=3,
|
---|
67 | ncol=3, mode="expand", borderaxespad=0.)
|
---|
68 | #apply options
|
---|
69 | options.addfielddefault('title', 'Boundary conditions')
|
---|
70 | options.addfielddefault('colorbar', 'off')
|
---|
71 | applyoptions(md, [], options, fig, axgrid, gridindex)
|
---|