Changeset 24290


Ignore:
Timestamp:
10/30/19 03:50:52 (5 years ago)
Author:
bdef
Message:

BUG:fixing setflowequation for FS

Location:
issm/trunk-jpl/src/m
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/parameterization/setflowequation.py

    r24261 r24290  
    4646    FSflag = FlagElements(md, options.getfieldvalue('FS', ''))
    4747    filltype = options.getfieldvalue('fill', 'none')
     48
    4849    #Flag the elements that have not been flagged as filltype
    4950    if 'SIA' in filltype:
     
    9192    #First modify FSflag to get rid of elements contrained everywhere (spc + border with HO or SSA)
    9293    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 icefront
     94        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
    9495        fullspcelems = np.sum(fullspcnodes[md.mesh.elements - 1], axis=1) == 6  #find all the nodes on the boundary of the domain without icefront
    9596        FSflag[np.where(fullspcelems.reshape(-1))] = False
  • issm/trunk-jpl/src/m/plot/plot_BC.py

    r24269 r24290  
    4646
    4747        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]
    4852            #first reduce vectors if layer is used
    4953            if options.getfieldvalue('layer', 0) >= 1:
     
    5256                fulldata = md.__dict__[str(spc_dict[str(key)][0])].__dict__[str(key)]
    5357                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
    6164    ax.set_xlim(XLims)
    6265    ax.set_ylim(YLims)
  • issm/trunk-jpl/src/m/plot/plot_icefront.py

    r24213 r24290  
    1616    x, y, z, elements, is2d, isplanet = processmesh(md, [], options)
    1717
     18    icenodes = md.mask.ice_levelset < 0
     19    iceelement = np.sum(icenodes[elements], axis=1)
     20
    1821    if options.exist('layer'):
    1922        nodes_per_elt = np.shape(md.mesh.elements2d)[1]
     
    2124        nodes_per_elt = np.shape(md.mesh.elements)[1]
    2225    #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))
    2427
    2528    #plot mesh
Note: See TracChangeset for help on using the changeset viewer.