Changeset 24290
- Timestamp:
- 10/30/19 03:50:52 (5 years ago)
- Location:
- issm/trunk-jpl/src/m
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/parameterization/setflowequation.py
r24261 r24290 46 46 FSflag = FlagElements(md, options.getfieldvalue('FS', '')) 47 47 filltype = options.getfieldvalue('fill', 'none') 48 48 49 #Flag the elements that have not been flagged as filltype 49 50 if 'SIA' in filltype: … … 91 92 #First modify FSflag to get rid of elements contrained everywhere (spc + border with HO or SSA) 92 93 if any(FSflag): 93 fullspcnodes = np.logical_or(~np.isnan(md.stressbalance.spcvx) + ~np.isnan(md.stressbalance.spcvy) + ~np.isnan(md.stressbalance.spcvz) , np.logical_and(nodeonHO, nodeonFS)) #find all the nodes on the boundary of the domain without icefront94 fullspcnodes = np.logical_or(~np.isnan(md.stressbalance.spcvx) + ~np.isnan(md.stressbalance.spcvy) + ~np.isnan(md.stressbalance.spcvz) == 3, np.logical_and(nodeonHO, nodeonFS)) #find all the nodes on the boundary of the domain without icefront 94 95 fullspcelems = np.sum(fullspcnodes[md.mesh.elements - 1], axis=1) == 6 #find all the nodes on the boundary of the domain without icefront 95 96 FSflag[np.where(fullspcelems.reshape(-1))] = False -
issm/trunk-jpl/src/m/plot/plot_BC.py
r24269 r24290 46 46 47 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] 48 52 #first reduce vectors if layer is used 49 53 if options.getfieldvalue('layer', 0) >= 1: … … 52 56 fulldata = md.__dict__[str(spc_dict[str(key)][0])].__dict__[str(key)] 53 57 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) 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 61 64 ax.set_xlim(XLims) 62 65 ax.set_ylim(YLims) -
issm/trunk-jpl/src/m/plot/plot_icefront.py
r24213 r24290 16 16 x, y, z, elements, is2d, isplanet = processmesh(md, [], options) 17 17 18 icenodes = md.mask.ice_levelset < 0 19 iceelement = np.sum(icenodes[elements], axis=1) 20 18 21 if options.exist('layer'): 19 22 nodes_per_elt = np.shape(md.mesh.elements2d)[1] … … 21 24 nodes_per_elt = np.shape(md.mesh.elements)[1] 22 25 #icefront check 23 icefront = np.where(np. abs(np.sum(md.mask.ice_levelset[elements], 1)) != nodes_per_elt)26 icefront = np.where(np.logical_and(iceelement != nodes_per_elt, iceelement != 0)) 24 27 25 28 #plot mesh
Note:
See TracChangeset
for help on using the changeset viewer.