source: issm/trunk-jpl/src/m/plot/plot_BC.py@ 24269

Last change on this file since 24269 was 24269, checked in by bdef, 5 years ago

BUG:fixing some space in clusters, and some fixes in plot

File size: 2.6 KB
Line 
1import numpy as np
2from processmesh import processmesh
3from applyoptions import applyoptions
4from plot_icefront import plot_icefront
5from hydrologydc import hydrologydc
6from mpl_toolkits.mplot3d import Axes3D
7from mpl_toolkits.axes_grid1.inset_locator import inset_axes
8
9
10def 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 #first reduce vectors if layer is used
49 if options.getfieldvalue('layer', 0) >= 1:
50 plotlayer = options.getfieldvalue('layer', 0)
51 slicesize = len(x)
52 fulldata = md.__dict__[str(spc_dict[str(key)][0])].__dict__[str(key)]
53 data = fulldata[(plotlayer - 1) * slicesize:plotlayer * slicesize]
54 mark = spc_dict[str(key)][1]
55 color = spc_dict[str(key)][2]
56 size = spc_dict[str(key)][3]
57 name = spc_dict[str(key)][4]
58 ax.scatter(x[np.where(~np.isnan(data))],
59 y[np.where(~np.isnan(data))],
60 marker=mark, c=color, s=size, label=name, linewidth=0)
61 ax.set_xlim(XLims)
62 ax.set_ylim(YLims)
63 ax.legend(bbox_to_anchor=(0., 1.02, 1., .102), loc=3,
64 ncol=3, mode="expand", borderaxespad=0.)
65 #apply options
66 options.addfielddefault('title', 'Boundary conditions')
67 options.addfielddefault('colorbar', 'off')
68 applyoptions(md, [], options, fig, axgrid, gridindex)
Note: See TracBrowser for help on using the repository browser.