[24213] | 1 | import numpy as np
|
---|
[21283] | 2 | from processmesh import processmesh
|
---|
| 3 | from applyoptions import applyoptions
|
---|
| 4 | from plot_icefront import plot_icefront
|
---|
[24213] | 5 | from hydrologydc import hydrologydc
|
---|
[27088] | 6 | from hydrologyglads import hydrologyglads
|
---|
[21588] | 7 | from mpl_toolkits.mplot3d import Axes3D
|
---|
[24213] | 8 | from mpl_toolkits.axes_grid1.inset_locator import inset_axes
|
---|
[21283] | 9 |
|
---|
| 10 |
|
---|
[24213] | 11 | def plot_BC(md, options, fig, axgrid, gridindex):
|
---|
| 12 | '''
|
---|
| 13 | PLOT_BC - plot model boundary conditions
|
---|
[21283] | 14 |
|
---|
[24213] | 15 | Usage:
|
---|
| 16 | plot_BC(md, options, fig, axes)
|
---|
[21588] | 17 |
|
---|
[24213] | 18 | See also: PLOTMODEL
|
---|
| 19 | '''
|
---|
| 20 | x, y, z, elements, is2d, isplanet = processmesh(md, [], options)
|
---|
[21588] | 21 |
|
---|
[24213] | 22 | ax = axgrid[gridindex]
|
---|
| 23 | fig.delaxes(axgrid.cbar_axes[gridindex])
|
---|
[21588] | 24 |
|
---|
[24213] | 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'],
|
---|
[27088] | 39 | 'spcvy': ['stressbalance', 'o', 'b', 160, 'vy Dirichlet'],
|
---|
| 40 | 'spcthickness': ['masstransport', 'o', 'k', 40, 'Thickness']}
|
---|
[24213] | 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 |
|
---|
[27088] | 49 | if isinstance(md.hydrology, hydrologyglads):
|
---|
| 50 | spc_dict['spcphi'] = ['hydrology', 'v', 'r', 240, 'phi']
|
---|
| 51 |
|
---|
[24213] | 52 | for key in spc_dict:
|
---|
[24290] | 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]
|
---|
[24213] | 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]
|
---|
[24290] | 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 |
|
---|
[24213] | 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)
|
---|