source: issm/oecreview/Archive/23390-24306/ISSM-24286-24287.diff

Last change on this file was 24307, checked in by Mathieu Morlighem, 5 years ago

NEW: adding Archive/23390-24306

File size: 1.6 KB
  • ../trunk-jpl/src/m/classes/masstransport.py

     
    7373        md = checkfield(md, 'fieldname', 'masstransport.stabilization', 'values', [0, 1, 2, 3, 4])
    7474        md = checkfield(md, 'fieldname', 'masstransport.min_thickness', '>', 0)
    7575        md = checkfield(md, 'fieldname', 'masstransport.requested_outputs', 'stringrow', 1)
     76        md = checkfield(md, 'fieldname', 'masstransport.vertex_pairing', '>', 0)
    7677
    7778        return md
    7879    # }}}
  • ../trunk-jpl/src/m/classes/stressbalance.py

     
    133133        md = checkfield(md, 'fieldname', 'stressbalance.referential', 'size', [md.mesh.numberofvertices, 6])
    134134        md = checkfield(md, 'fieldname', 'stressbalance.loadingforce', 'size', [md.mesh.numberofvertices, 3])
    135135        md = checkfield(md, 'fieldname', 'stressbalance.requested_outputs', 'stringrow', 1)
    136 
     136        md = checkfield(md, 'fieldname', 'stressbalance.vertex_pairing', '>', 0)
    137137        #singular solution
    138138        #        if ~any((~isnan(md.stressbalance.spcvx) + ~isnan(md.stressbalance.spcvy)) == 2),
    139139        if not np.any(np.logical_and(np.logical_not(np.isnan(md.stressbalance.spcvx)), np.logical_not(np.isnan(md.stressbalance.spcvy)))):
Note: See TracBrowser for help on using the repository browser.