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

Last change on this file since 27088 was 27088, checked in by bdef, 3 years ago

NEW: new capability for front and BCs plotting and experimental plotter for GlADS channels

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