Ignore:
Timestamp:
10/18/19 06:52:19 (5 years ago)
Author:
bdef
Message:

BUG: fixing some negative number syntax

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/src/m/boundaryconditions/SetIceShelfBC.py

    r24255 r24256  
    2828            raise IOError("SetIceShelfBC error message: ice front file '%s' not found." % icefrontfile)
    2929        nodeinsideicefront = ContourToMesh(md.mesh.elements, md.mesh.x, md.mesh.y, icefrontfile, 'node', 2)
    30         nodeonicefront = np.logical_and(md.mesh.vertexonboundary, nodeinsideicefront.reshape(- 1))
     30        nodeonicefront = np.logical_and(md.mesh.vertexonboundary, nodeinsideicefront.reshape(-1))
    3131    else:
    3232        nodeonicefront = np.zeros((md.mesh.numberofvertices), bool)
     
    6868        #reshape to rank - 2 if necessary to match spc arrays
    6969        if np.ndim(md.inversion.vx_obs) == 1:
    70             md.inversion.vx_obs = md.inversion.vx_obs.reshape(- 1, )
     70            md.inversion.vx_obs = md.inversion.vx_obs.reshape(-1, )
    7171        if np.ndim(md.inversion.vy_obs) == 1:
    72             md.inversion.vy_obs = md.inversion.vy_obs.reshape(- 1, )
     72            md.inversion.vy_obs = md.inversion.vy_obs.reshape(-1, )
    7373        print("      boundary conditions for stressbalance model: spc set as observed velocities")
    7474        md.stressbalance.spcvx[pos] = md.inversion.vx_obs[pos]
Note: See TracChangeset for help on using the changeset viewer.