Ignore:
Timestamp:
11/24/17 12:27:39 (7 years ago)
Author:
kruegern
Message:

CHG: changed some jenkins scripts to ignore test703.py, added 243, 701, and 435 back to jenkins testing. Fixed bamgflowband.py not working well with bamg.py and breaking either 701 or 514 and 119.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/mesh/bamgflowband.py

    r22267 r22274  
    2525        #Write expfile with domain outline
    2626        A = OrderedDict()
    27         A.x = np.concatenate((x,np.flipud(x),[x[0]]))
    28         A.y = np.concatenate((base,np.flipud(surf),[base[0]]))
    29         A.nods = np.size(A.x)
     27        A['x'] = np.concatenate((x,np.flipud(x),[x[0]]))
     28        A['y'] = np.concatenate((base,np.flipud(surf),[base[0]]))
     29        A['nods'] = np.size(A['x'])
    3030
    3131        #markers:
    32         m                               = np.ones((np.size(A.x)-1,))    # base        = 1
     32        m                               = np.ones((np.size(A['x'])-1,)) # base        = 1
    3333        m[np.size(x) - 1]                       = 2                     # right side  = 2
    3434        m[np.size(x):2 * np.size(x) - 1]        = 3                     # top surface = 3
Note: See TracChangeset for help on using the changeset viewer.